/* =========================================================
   MEDDICATE Website - main.css
   Main visual style / layout / components
========================================================= */

/* =========================
   CSS Variables
========================= */
:root {
  --color-primary: #c90000;
  --color-primary-dark: #9f0000;
  --color-dark: #111c24;
  --color-dark-soft: #26333b;
  --color-text: #1f2f3a;
  --color-muted: #667783;
  --color-light: #f6f9fb;
  --color-white: #ffffff;
  --color-border: rgba(17, 28, 36, 0.12);

  --shadow-soft: 0 18px 50px rgba(17, 28, 36, 0.08);
  --shadow-medium: 0 28px 80px rgba(17, 28, 36, 0.14);
  --shadow-red: 0 18px 45px rgba(201, 0, 0, 0.22);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --container: 1200px;

  --transition-fast: 0.25s ease;
  --transition-medium: 0.4s ease;
}

/* =========================
   Reset / Base
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--color-white);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================
   Global Helpers
========================= */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-padding {
  padding: 110px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--center .section-label {
  justify-content: center;
}

.section-heading h2,
.welcome__content h2,
.services-preview__content h2,
.certificates__content h2,
.contact-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.section-heading p,
.welcome__content p,
.services-preview__content p,
.certificates__content p,
.contact-cta p {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 680px;
}

/* =========================
   Buttons
========================= */
.btn,
.header__cta,
.hero__actions a,
.welcome__actions a,
.product-card__content a,
.services-preview__content a,
.certificates__content a,
.contact-cta__actions a,
.section-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 900;
  transition: var(--transition-fast);
}

.btn-primary,
.header__cta,
.hero__actions a:first-child,
.welcome__actions a:first-child,
.services-preview__content a,
.certificates__content a,
.contact-cta__actions a:first-child,
.section-action a {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover,
.header__cta:hover,
.hero__actions a:first-child:hover,
.welcome__actions a:first-child:hover,
.services-preview__content a:hover,
.certificates__content a:hover,
.contact-cta__actions a:first-child:hover,
.section-action a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.btn-outline,
.hero__actions a:last-child,
.welcome__actions a:last-child,
.contact-cta__actions a:last-child {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.btn-outline:hover,
.hero__actions a:last-child:hover,
.welcome__actions a:last-child:hover,
.contact-cta__actions a:last-child:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* =========================
   Preloader
========================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 0, 0, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef4f7);
  display: grid;
  place-items: center;
}

.preloader__content {
  width: min(560px, 88vw);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
  text-align: center;
}

.preloader__content img {
  max-width: 310px;
  max-height: 130px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.preloader__pulse {
  width: 100%;
  height: 70px;
}

.preloader__pulse svg {
  width: 100%;
  height: 100%;
}

.preloader__pulse path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader__text {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   Animated Background Base
========================= */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.site-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 0, 0, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(38, 51, 59, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbfc);
}

.site-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 28, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 36, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.site-bg__pulse-line {
  position: absolute;
  left: -10%;
  top: 34%;
  width: 120%;
  height: 120px;
  opacity: 0.08;
  background:
    linear-gradient(90deg, transparent, var(--color-primary), transparent);
  filter: blur(18px);
}

/* =========================
   Header
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

.header__container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
  max-width: 220px;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__nav a {
  position: relative;
  font-size: 13px;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  min-height: 46px;
  padding-inline: 22px;
  white-space: nowrap;
}

.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--color-dark);
  border-radius: 14px;
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  margin: 5px auto;
  border-radius: var(--radius-pill);
}

/* =========================
   Hero / Slideshow
========================= */
.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
}

.hero__slider {
  position: relative;
  min-height: calc(100vh - 86px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.38) 100%),
    url("../images/hero/hero-overlay-pattern.svg") center / 520px repeat;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
  padding: 70px 0;
}

.hero__content h1,
.hero__title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.hero__content h1 span,
.hero__title span {
  display: block;
  color: var(--color-primary);
}

.hero__content p {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
}

.hero__visual > img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow-medium);
}

.hero__floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 170px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero__floating-card strong {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
}

.hero__floating-card span {
  color: var(--color-dark-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero__floating-card--one {
  left: -22px;
  bottom: 60px;
}

.hero__floating-card--two {
  right: -18px;
  top: 58px;
}

.hero__controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(17, 28, 36, 0.22);
  transition: var(--transition-fast);
}

.hero__dot--active {
  width: 54px;
  background: var(--color-primary);
}

/* =========================
   Feature Highlights
========================= */
.features {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.feature-card {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
}

.feature-card h3 {
  font-size: 17px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 14px;
}

/* =========================
   Welcome Section
========================= */
.welcome__container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 58px;
}

.welcome__content p + p {
  margin-top: 16px;
}

.welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.welcome__image {
  position: relative;
}

.welcome__image::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--color-primary) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.28;
  z-index: -1;
}

.welcome__image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

/* =========================
   Featured Products
========================= */
.featured-products {
  background: var(--color-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-medium);
}

.product-card__image {
  height: 260px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__content {
  padding: 26px;
}

.product-card__content span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-card__content h3 {
  font-size: 24px;
  color: var(--color-dark);
  margin: 8px 0 10px;
}

.product-card__content p {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 22px;
}

/* =========================
   Categories
========================= */
.categories {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 0, 0, 0.12), transparent 26%),
    linear-gradient(135deg, #121f28, #26333b);
  color: var(--color-white);
}

.categories .section-heading h2,
.categories .section-heading p {
  color: var(--color-white);
}

.categories .section-heading p {
  opacity: 0.76;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 230px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  transition: var(--transition-medium);
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card img {
  width: 100%;
  height: auto;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transition: var(--transition-medium);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(135deg, rgba(201, 0, 0, 0.2), transparent 55%);
  z-index: 1;
}

.category-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 20px;
  font-weight: 900;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* =========================
   Services Preview
========================= */
.services-preview {
  background: var(--color-white);
}

.services-preview__container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}

.service-item:hover {
  border-color: rgba(201, 0, 0, 0.35);
  transform: translateY(-6px);
}

.service-item h3 {
  color: var(--color-dark);
  font-size: 21px;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--color-muted);
  font-size: 15px;
}

/* =========================
   Stats
========================= */
.stats {
  padding: 54px 0;
  background: var(--color-light);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 34px 24px;
  border-radius: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--color-dark-soft);
  font-weight: 900;
  font-size: 14px;
}

/* =========================
   Partners
========================= */
.partners {
  background: var(--color-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.partner-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--color-light);
}

.partner-card h3 {
  color: var(--color-dark);
  font-size: 22px;
  margin-bottom: 8px;
}

.partner-card p {
  color: var(--color-muted);
  font-size: 15px;
}

/* =========================
   Certificates
========================= */
.certificates {
  background:
    linear-gradient(135deg, rgba(201, 0, 0, 0.06), transparent),
    var(--color-light);
}

.certificates__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

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

.certificate-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  margin-bottom: 18px;
}

.certificate-card h3 {
  color: var(--color-dark);
  font-size: 19px;
}

/* =========================
   Contact CTA
========================= */
.contact-cta {
  background:
    radial-gradient(circle at 86% 24%, rgba(201, 0, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #121f28, #26333b);
  color: var(--color-white);
}

.contact-cta .section-label,
.contact-cta h2,
.contact-cta p {
  color: var(--color-white);
}

.contact-cta p {
  opacity: 0.78;
}

.contact-cta__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  min-width: fit-content;
}

/* =========================
   Footer
========================= */
.footer {
  background: #0c141a;
  color: var(--color-white);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 44px;
  padding: 70px 0;
}

.footer__brand p,
.footer__contact p,
.footer__bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer__links,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer h3 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--color-primary);
}

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

.footer__bottom-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer__disclaimer {
  max-width: 620px;
  text-align: right;
  color: rgba(238, 2, 2, 0.6);
}

/* =========================
   Default Image Placeholder Handling
========================= */
img[src=""],
img:not([src]) {
  display: none;
}
/* =========================================================
   Products Page Styles
   Add this section at the end of assets/css/main.css
========================================================= */

/* =========================
   Products Page Hero
========================= */
.products-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 0, 0, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fb 100%);
}

.products-page-hero__container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.products-page-hero__content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.products-page-hero__content h1 span {
  display: block;
  color: var(--color-primary);
}

.products-page-hero__content p {
  max-width: 620px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.products-page-hero__visual {
  position: relative;
}

.products-page-hero__visual > img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow-medium);
}

/* =========================
   Products Catalogue Layout
========================= */
.products-catalogue {
  background: var(--color-white);
}

.products-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

/* =========================
   Products Sidebar
========================= */
.products-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.sidebar-card h2 {
  color: var(--color-dark);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sidebar-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sidebar-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-red);
  transition: var(--transition-fast);
}

.sidebar-card a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* =========================
   Form / Filters
========================= */
.form-label {
  display: block;
  color: var(--color-dark-soft);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.filter-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.filter-input:focus {
  border-color: rgba(201, 0, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 0, 0, 0.08);
}

.filter-input::placeholder {
  color: #9aa8b0;
}

/* =========================
   Filter Buttons
========================= */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-btn {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-dark-soft);
  font-size: 12px;
  font-weight: 900;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: rgba(201, 0, 0, 0.45);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(201, 0, 0, 0.2);
}

/* =========================
   Reset Filter Button
========================= */
.reset-filter-btn {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(201, 0, 0, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(201, 0, 0, 0.06);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  transition: var(--transition-fast);
}

.reset-filter-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* =========================
   Products Content
========================= */
.products-content {
  min-width: 0;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-light);
}

.products-toolbar p {
  color: var(--color-muted);
  font-size: 14px;
}

.products-toolbar strong {
  color: var(--color-dark);
}

/* Catalogue Grid */
.products-grid--catalogue {
  grid-template-columns: repeat(3, 1fr);
}

.product-item {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.product-item.is-hidden {
  display: none;
}

/* =========================
   Empty State
========================= */
.products-empty-state {
  margin-top: 26px;
  padding: 48px 28px;
  border: 1px dashed rgba(201, 0, 0, 0.35);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 0, 0, 0.08), transparent 36%),
    var(--color-light);
  text-align: center;
}

.products-empty-state h3 {
  color: var(--color-dark);
  font-size: 28px;
  margin-bottom: 8px;
}

.products-empty-state p {
  color: var(--color-muted);
  font-size: 15px;
}

.products-empty-state[hidden] {
  display: none;
}

/* =========================
   Product Overview Table
========================= */
.product-overview {
  background: var(--color-light);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.products-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.products-table thead {
  background:
    linear-gradient(135deg, var(--color-dark), var(--color-dark-soft));
  color: var(--color-white);
}

.products-table th,
.products-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.products-table th {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.products-table td {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.products-table td:first-child {
  color: var(--color-dark);
  font-weight: 900;
}

.products-table tbody tr {
  transition: var(--transition-fast);
}

.products-table tbody tr:hover {
  background: rgba(201, 0, 0, 0.035);
}

.products-table tbody tr:last-child td {
  border-bottom: 0;
}

/* =========================
   Products Page Responsive
========================= */
@media (max-width: 1200px) {
  .products-layout {
    grid-template-columns: 290px 1fr;
  }

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

@media (max-width: 992px) {
  .products-page-hero__container {
    grid-template-columns: 1fr;
  }

  .products-page-hero__visual > img {
    min-height: 390px;
  }

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

  .products-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar-card:first-child,
  .sidebar-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .products-toolbar {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .products-page-hero__content h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .products-page-hero__content p {
    font-size: 16px;
  }

  .products-page-hero__visual > img {
    min-height: 320px;
    border-radius: 28px;
  }

  .products-sidebar {
    grid-template-columns: 1fr;
  }

  .products-grid--catalogue {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    border-radius: 22px;
  }

  .products-toolbar {
    padding: 16px;
    border-radius: 18px;
  }

  .products-table th,
  .products-table td {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .products-page-hero__visual > img {
    min-height: 260px;
  }

  .filter-buttons {
    gap: 8px;
  }

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

  .products-empty-state {
    padding: 34px 18px;
  }

  .products-empty-state h3 {
    font-size: 24px;
  }
}
/* =========================================================
   Contact Page Styles
   Add this section Page Layout   Add this section at the end of assets/css/main.css
========================= */
.contact-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.contact-page__container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

/* =========================
   Contact Form Card
========================= */
.contact-form-card,
.contact-details-card {
  border: 1px solid var(--color-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(16px);
}

.contact-form-card {
  padding: 38px;
}

.contact-form-card h2,
.contact-details-card h2 {
  color: var(--color-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.contact-form-card p,
.contact-details-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* =========================
   Contact Form
========================= */
.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--color-dark-soft);
  font-size: 13px;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input,
.form-group select {
  min-height: 50px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 0, 0, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa8b0;
}

.form-submit-btn {
  width: fit-content;
  min-height: 52px;
  padding: 14px 30px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-red);
  transition: var(--transition-fast);
}

.form-submit-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.form-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(201, 0, 0, 0.06);
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   Contact Details Card
========================= */
.contact-details-card {
  position: sticky;
  top: 112px;
  padding: 34px;
}

.contact-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-detail-item {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
}

.contact-detail-item strong {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 800;
  word-break: break-word;
}

.contact-detail-item a:hover {
  color: var(--color-primary);
}

/* =========================
   Contact Mini CTA
========================= */
.contact-mini-cta {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 0, 0, 0.24), transparent 34%),
    linear-gradient(135deg, var(--color-dark), var(--color-dark-soft));
  color: var(--color-white);
}

.contact-mini-cta h3 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-mini-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 18px;
}

.contact-mini-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  transition: var(--transition-fast);
}

.contact-mini-cta a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* =========================
   Map Section
========================= */
.map-section {
  background: var(--color-white);
}

.map-placeholder {
  min-height: 420px;
  border: 1px solid var(--color-border);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, rgba(17, 28, 36, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(17, 28, 36, 0.06) 1px, transparent 1px);
  background-size:
    auto,
    54px 54px,
    54px 54px;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(201, 0, 0, 0.12);
  filter: blur(45px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-primary);
  transform: rotate(-45deg);
  box-shadow: var(--shadow-red);
}

.map-placeholder__content {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100% - 40px));
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(14px);
  text-align: center;
}

.map-placeholder__content strong {
  display: block;
  color: var(--color-dark);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.map-placeholder__content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.map-placeholder__content p {
  color: var(--color-muted);
  font-size: 15px;
}

/* =========================
   Contact Feature Cards Links
========================= */
.feature-card p a {
  color: var(--color-dark);
  font-weight: 900;
  transition: var(--transition-fast);
}

.feature-card p a:hover {
  color: var(--color-primary);
}

/* =========================================================
   IMPROVED RESPONSIVE SYSTEM
   Aligned with main layout proportions
========================================================= */

/* =========================================================
   ✅ GLOBAL RESPONSIVE TUNING (Laptop Optimization)
========================================================= */
@media (max-width: 1400px) {

  :root {
    --container: 1100px;
  }

  .section-padding {
    padding: 90px 0;
  }

  .section-heading h2 {
    font-size: clamp(30px, 3.5vw, 48px);
  }

  .container {
    width: min(var(--container), calc(100% - 40px));
  }
}

/* =========================================================
   ✅ HEADER FIX (Solve Wrap Issue)
========================================================= */

/* Prevent nav wrapping */
.header__nav {
  flex-wrap: nowrap;
}

.header__nav a {
  white-space: nowrap;
}

/* =========================================================
   ✅ GLOBAL RESPONSIVE TUNING (Laptop Optimization)
========================================================= */
@media (max-width: 1400px) {

  :root {
    --container: 1100px;
  }

  .section-padding {
    padding: 90px 0;
  }

  .section-heading h2 {
    font-size: clamp(30px, 3.5vw, 48px);
  }

  .container {
    width: min(var(--container), calc(100% - 40px));
  }
}

/* =========================================================
   ✅ HEADER FIX (Solve Wrap Issue)
========================================================= */

/* Prevent nav wrapping */
.header__nav {
  flex-wrap: nowrap;
}

.header__nav a {
  white-space: nowrap;
}

/* Laptop optimization */
@media (max-width: 1400px) {

  .header__logo {
    min-width: 130px;
  }

  .header__logo img {
    max-height: 46px;
  }

  .header__nav {
    gap: 16px;
  }

  .header__nav a {
    font-size: 12px;
  }

  .header__container {
    gap: 14px;
  }

  .header__cta {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Smaller laptops */
@media (max-width: 1200px) {
  .header__nav {
    gap: 12px;
  }

  .header__logo {
    min-width: 120px;
  }

  .header__logo img {
    max-height: 42px;
  }
}

/* =========================================================
   ✅ GRID CONSISTENCY FIX
========================================================= */

@media (max-width: 1200px) {
  .products-layout {
    grid-template-columns: 260px 1fr;
    gap: 26px;
  }

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

@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: relative;
    top: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .products-sidebar .sidebar-card:first-child {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   ✅ MOBILE CLEAN STACK
========================================================= */
@media (max-width: 768px) {

  .products-sidebar {
    grid-template-columns: 1fr;
  }

  .products-grid--catalogue {
    grid-template-columns: 1fr;
  }

  .products-toolbar {
    flex-direction: column;
    gap: 12px;
  }

  .contact-page__container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ✅ SMALL MOBILE POLISH
========================================================= */
@media (max-width: 576px) {

  .header__cta {
    display: none;
  }

  .sidebar-card {
    padding: 18px;
  }

  .products-toolbar {
    padding: 12px;
  }

  .products-empty-state {
    padding: 28px 16px;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 20px;
  }
}
/* =========================================================
   Smart Interactive Location Map
========================================================= */

.smart-location-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 0, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.smart-map-shell {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.smart-location-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.smart-map-card {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
}

.smart-map-card__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(201, 0, 0, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.smart-map-card h3 {
  color: var(--color-dark);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.smart-map-card p {
  color: var(--color-dark-soft);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.smart-map-card__details {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 14px;
}

.locate-me-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 900;
  box-shadow: var(--shadow-red);
  transition: var(--transition-fast);
}

.locate-me-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.locate-me-btn:focus-visible {
  outline: 4px solid rgba(201, 0, 0, 0.25);
  outline-offset: 3px;
}

/* Toast */
.location-toast {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(17, 28, 36, 0.88);
  color: var(--color-white);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: 0.4s ease;
}

.location-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.location-toast strong,
.location-toast span {
  display: block;
}

.location-toast strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.location-toast span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

/* Custom Markers */
.company-marker,
.user-marker {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.company-marker {
  background: var(--color-primary);
  box-shadow:
    0 0 0 8px rgba(201, 0, 0, 0.16),
    0 0 28px rgba(201, 0, 0, 0.55);
}

.company-marker::before,
.company-marker::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 0, 0, 0.35);
  animation: companyPulse 2.2s ease-out infinite;
}

.company-marker::after {
  animation-delay: 0.8s;
}

.company-marker__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0.9;
}

.company-marker__dot:nth-child(1) {
  top: -12px;
  left: 4px;
  animation: particleOrbit 3.2s linear infinite;
}

.company-marker__dot:nth-child(2) {
  right: -10px;
  bottom: 2px;
  animation: particleOrbit 3.8s linear infinite reverse;
}

.company-marker__dot:nth-child(3) {
  left: -10px;
  bottom: -4px;
  animation: particleOrbit 4.3s linear infinite;
}

.user-marker {
  background: #26333b;
  box-shadow:
    0 0 0 7px rgba(38, 51, 59, 0.16),
    0 0 24px rgba(38, 51, 59, 0.4);
}

/* Route */
.leaflet-interactive.smart-route-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawSmartRoute 1.8s ease forwards;
}

.smart-moving-dot {
  filter: drop-shadow(0 0 10px rgba(201, 0, 0, 0.8));
}

/* Leaflet Visual Polish */
.smart-map-shell .leaflet-control-zoom {
  border: 0;
  box-shadow: var(--shadow-soft);
}

.smart-map-shell .leaflet-control-zoom a {
  border: 0;
  color: var(--color-dark);
}

.smart-map-shell .leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.smart-map-shell .leaflet-popup-content {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

/* Keyframes */
@keyframes companyPulse {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes particleOrbit {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate(8px, -8px) scale(0.65);
    opacity: 0.35;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}

@keyframes drawSmartRoute {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .smart-map-shell {
    min-height: 680px;
    border-radius: 28px;
  }

  .smart-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 22px;
    border-radius: 24px;
  }

  .location-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .smart-map-shell {
    min-height: 620px;
  }

  .smart-map-card h3 {
    font-size: 28px;
  }
}
/* =========================
   Smart Map Card Close Button
========================= */
.smart-map-card {
  position: absolute;
}

.smart-map-card__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 28, 36, 0.08);
  color: var(--color-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
  z-index: 2;
}

.smart-map-card__close:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg) scale(1.05);
}

.smart-map-card__close:focus-visible {
  outline: 4px solid rgba(201, 0, 0, 0.22);
  outline-offset: 3px;
}

/* closed state */
.smart-map-card.is-hidden {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  visibility: hidden;
}
/* =========================================================
   Footer Brand Images Layout
========================================================= */

.footer-brand-images {
  --footer-square-size: 125px;
  --footer-image-gap: 10px;

  width: calc((var(--footer-square-size) * 2) + var(--footer-image-gap));
  display: grid;
  gap: var(--footer-image-gap);
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
}

.footer-brand-images__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-images__top img {
  width: var(--footer-square-size);
  height: var(--footer-square-size);
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-images__wide {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  padding: 12px;
  background: rgba(225, 225, 225, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 576px) {
  .footer-brand-images {
    --footer-square-size: 82px;
  }

  .footer-brand-images__wide {
    height: 66px;
  }
}