/*
Theme Name: CATO Free Zone
Theme URI: https://catofz.com
Author: CATO Free Zone
Description: Custom landing theme for CATO Free Zone.
Version: 1.1.6
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: cato-free-zone
*/

:root {
  --surface: #f8f9fa;
  --surface-low: #f3f4f5;
  --surface-high: #e1e3e4;
  --white: #ffffff;
  --ink: #191c1d;
  --muted: #494551;
  --outline: #d1d5db;
  --violet: #4b2e83;
  --violet-deep: #34146c;
  --gold: #b79b5b;
  --navy: #102a43;
  --whatsapp: #25d366;
  --shadow: 0 4px 12px rgba(16, 42, 67, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.cato-container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.cato-navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(203, 196, 210, 0.45);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 8px rgba(16, 42, 67, 0.04);
  backdrop-filter: blur(14px);
}

.cato-nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.cato-brand,
.cato-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  min-width: 0;
}

.cato-brand strong,
.cato-footer-brand strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cato-brand > span:last-child {
  min-width: 0;
}

.cato-brand strong,
.cato-brand small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cato-brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cato-brand-mark .cato-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--violet);
}

.cato-menu {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cato-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cato-menu a:hover,
.cato-menu a.is-active {
  border-color: var(--violet);
  color: var(--violet-deep);
}

.cato-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--outline);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.cato-menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cato-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.cato-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

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

.cato-language {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.cato-language span {
  color: var(--outline);
  padding-inline: 4px;
}

.cato-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 2px;
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cato-button.is-small {
  min-height: 40px;
  padding: 10px 20px;
}

.cato-button.is-primary {
  background: var(--gold);
  color: var(--navy);
}

.cato-button.is-secondary {
  border-color: var(--violet);
  background: transparent;
  color: var(--violet);
}

.cato-button:hover {
  opacity: 0.9;
}

.cato-hero {
  overflow: hidden;
  padding: 80px 0;
  background: var(--surface);
}

.cato-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.cato-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
}

.cato-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--surface-high);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.cato-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.cato-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cato-hero p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.cato-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.cato-hero-image {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin: 0;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface-low);
}

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

.cato-hero-image span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 42, 67, 0.52), transparent 48%);
}

.cato-section {
  padding: 80px 0;
}

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

.cato-section-heading:not(.is-left) {
  margin-inline: auto;
  text-align: center;
}

.cato-section-heading h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.cato-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cato-services-section {
  border-top: 1px solid rgba(209, 213, 219, 0.72);
  border-bottom: 1px solid rgba(209, 213, 219, 0.72);
  background: var(--surface-low);
}

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

.cato-service-card,
.cato-consulting-card {
  min-height: 300px;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cato-service-card:hover,
.cato-consulting-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cato-service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cato-service-card.is-wide {
  grid-column: span 2;
}

.cato-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #eadcff;
  color: var(--violet);
  font-family: "Material Symbols Outlined";
  font-size: 31px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.cato-service-card h3,
.cato-consulting-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: 25px;
  line-height: 1.25;
}

.cato-service-card p,
.cato-consulting-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.cato-service-card a,
.cato-consulting-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cato-service-card a:hover,
.cato-consulting-card a:hover {
  color: var(--gold);
}

.cato-consulting-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.cato-consulting-card .cato-icon {
  background: transparent;
  color: var(--gold);
}

.cato-consulting-card h3 {
  color: var(--white);
}

.cato-consulting-card p {
  color: rgba(255, 255, 255, 0.76);
}

.cato-consulting-card a {
  color: var(--gold);
}

.cato-consulting-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  border-radius: 4px;
  object-fit: cover;
  opacity: 0.38;
}

.cato-why-section {
  background: var(--surface);
}

.cato-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.cato-point-list {
  display: grid;
  gap: 26px;
}

.cato-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.62);
  padding-bottom: 24px;
}

.cato-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cato-point .cato-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  background: transparent;
  color: var(--gold);
  font-size: 26px;
}

.cato-point h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 20px;
}

.cato-point p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cato-warehouse-card {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
}

.cato-warehouse-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--surface-high);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.18);
}

.cato-warehouse-card figcaption {
  position: absolute;
  right: -22px;
  bottom: 58px;
  min-width: 160px;
  border: 1px solid var(--outline);
  border-radius: 4px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cato-warehouse-card strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.cato-warehouse-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cato-credentials-section {
  border-top: 1px solid rgba(209, 213, 219, 0.58);
  background: var(--white);
}

.cato-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cato-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--surface);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cato-credentials span.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.cato-credentials .cato-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  font-size: 18px;
}

.cato-contact-section {
  border-top: 1px solid rgba(209, 213, 219, 0.68);
  background: var(--white);
}

.cato-contact-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 213, 219, 0.68);
  padding: 82px 0;
  background: var(--surface-high);
}

.cato-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(52%, 680px);
  opacity: 0.08;
  background-image: radial-gradient(circle at right, var(--navy) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

.cato-contact-hero h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
}

.cato-contact-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
}

.cato-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  gap: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cato-contact-form-card,
.cato-headquarters-card,
.cato-map-card {
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cato-contact-form-card,
.cato-headquarters-card {
  padding: 34px;
}

.cato-contact-form-card h3,
.cato-headquarters-card h3 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Noto Sans", Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.25;
}

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

.cato-form-field {
  display: grid;
  gap: 9px;
}

.cato-form-field.is-full,
.cato-form-actions {
  grid-column: 1 / -1;
}

.cato-form-field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cato-form-field input,
.cato-form-field select,
.cato-form-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--outline);
  border-radius: 4px;
  padding: 13px 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.cato-form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.cato-form-field input:focus,
.cato-form-field select:focus,
.cato-form-field textarea:focus {
  outline: 0;
  border-color: var(--violet);
  box-shadow: 0 0 0 2px rgba(75, 46, 131, 0.15);
}

.cato-select-wrap {
  position: relative;
  display: block;
}

.cato-select-wrap select {
  appearance: none;
  padding-right: 48px;
}

.cato-select-wrap .cato-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  margin: 0;
  transform: translateY(-50%);
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  pointer-events: none;
}

.cato-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.cato-form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 0;
  border-radius: 4px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.cato-form-actions button:hover {
  opacity: 0.92;
}

.cato-form-actions .cato-icon {
  width: 20px;
  height: 20px;
  margin: 0;
  background: transparent;
  color: currentColor;
  font-size: 20px;
}

.cato-contact-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.cato-contact-info {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 24px;
}

.cato-contact-info > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(75, 46, 131, 0.12);
  color: var(--violet);
}

.cato-contact-info .cato-icon {
  width: 26px;
  height: 26px;
  margin: 0;
  background: transparent;
  color: currentColor;
  font-size: 26px;
}

.cato-contact-info strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cato-contact-info p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-word;
}

.cato-map-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  margin: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.8), transparent 42%),
    #e9eee9;
}

.cato-map-grid {
  position: absolute;
  inset: -30px;
  background-image:
    linear-gradient(28deg, transparent 0 45%, rgba(255, 255, 255, 0.9) 45% 48%, transparent 48%),
    linear-gradient(116deg, transparent 0 48%, rgba(255, 255, 255, 0.8) 48% 51%, transparent 51%),
    linear-gradient(90deg, rgba(184, 206, 184, 0.6) 1px, transparent 1px),
    linear-gradient(0deg, rgba(184, 206, 184, 0.6) 1px, transparent 1px);
  background-size: 150px 90px, 120px 110px, 42px 42px, 42px 42px;
  transform: rotate(-8deg) scale(1.08);
}

.cato-map-water {
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(180deg, #7eb5ce, #4f91b4);
  clip-path: polygon(0 0, 74% 0, 54% 100%, 0 100%);
}

.cato-map-pin {
  position: absolute;
  left: 56%;
  top: 43%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px 999px 999px 0;
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(75, 46, 131, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cato-map-pin .cato-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  background: transparent;
  color: currentColor;
  font-size: 30px;
  transform: rotate(45deg);
}

.cato-footer {
  border-top: 1px solid rgba(203, 196, 210, 0.4);
  background: var(--surface-high);
  padding: 72px 0;
}

.cato-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: start;
}

.cato-footer-brand {
  margin-bottom: 18px;
}

.cato-footer p {
  max-width: 360px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cato-copyright {
  font-size: 13px;
}

.cato-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.cato-footer h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 14px;
}

.cato-footer a {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.cato-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.cato-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.cato-whatsapp:hover {
  transform: scale(1.06);
}

@media (max-width: 980px) {
  .cato-nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 8px 0;
  }

  .cato-menu-toggle {
    display: inline-flex;
  }

  .cato-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    border: 1px solid var(--outline);
    border-radius: 8px;
    padding: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(16, 42, 67, 0.18);
    overflow-y: auto;
    max-height: min(70vh, 420px);
  }

  .cato-navbar.is-menu-open .cato-menu {
    display: flex;
  }

  .cato-navbar.is-menu-open .cato-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .cato-navbar.is-menu-open .cato-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .cato-navbar.is-menu-open .cato-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .cato-menu a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    border-bottom: 0;
    border-radius: 4px;
    padding: 0 12px;
  }

  .cato-menu a:hover,
  .cato-menu a.is-active {
    border-color: transparent;
    background: var(--surface-low);
  }

  .cato-nav-actions {
    display: none;
  }

  .cato-hero-grid,
  .cato-why-grid,
  .cato-contact-layout,
  .cato-footer-inner {
    grid-template-columns: 1fr;
  }

  .cato-hero-image {
    height: 420px;
  }

  .cato-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cato-service-card.is-wide,
  .cato-consulting-card {
    grid-column: span 2;
  }

  .cato-contact-layout {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 680px) {
  .cato-container {
    width: min(100% - 32px, 1280px);
  }

  .cato-brand small,
  .cato-language {
    display: none;
  }

  .cato-brand strong {
    font-size: 18px;
  }

  .cato-hero {
    padding: 56px 0;
  }

  .cato-hero h1 {
    font-size: 40px;
  }

  .cato-hero p {
    font-size: 17px;
  }

  .cato-actions,
  .cato-footer-links {
    display: grid;
  }

  .cato-button {
    width: 100%;
  }

  .cato-hero-image {
    height: 320px;
  }

  .cato-section {
    padding: 60px 0;
  }

  .cato-contact-hero {
    padding: 56px 0;
  }

  .cato-contact-hero p {
    font-size: 17px;
  }

  .cato-services-grid,
  .cato-consulting-card,
  .cato-contact-form {
    grid-template-columns: 1fr;
  }

  .cato-service-card.is-wide,
  .cato-consulting-card {
    grid-column: auto;
  }

  .cato-consulting-card img {
    height: 190px;
  }

  .cato-contact-form-card,
  .cato-headquarters-card {
    padding: 24px;
  }

  .cato-form-actions {
    display: grid;
    justify-content: stretch;
  }

  .cato-contact-form .cato-form-actions button {
    width: 100%;
    max-width: none;
  }

  .cato-contact-info {
    grid-template-columns: 48px 1fr;
  }

  .cato-contact-info > span {
    width: 48px;
    height: 48px;
  }

  .cato-map-card {
    min-height: 260px;
  }

  .cato-warehouse-card figcaption {
    right: 12px;
    bottom: 20px;
  }
}
