/* Global base styles and theme tokens */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --color-primary: #2A73FF;
  --color-primary-soft: #e5efff;
  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f4fb;
  --color-border-subtle: #dde3f0;
  --color-text-main: #000929;
  --color-text-muted: #6b748b;
  --color-accent: #ffb020;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 35, 95, 0.12);
  --transition-fast: 150ms ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--color-bg);
  color: var(--color-text-main);
}

body {
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  min-height: 60vh;
}

.w-100 {
  width: 100% !important;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.section {
  padding: 20px 0 60px 0;
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-header {
  margin-bottom: 32px;
}

.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.btn {
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  /* box-shadow: 0 14px 30px rgba(38, 103, 255, 0.35); */
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(38, 103, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(38, 103, 255, 0.3);
}

.btn-outline-light {
  background: #f7f9ff;
  color: var(--color-text-main);
  border: 1px solid var(--color-border-subtle);
}

.btn-light {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-cta {
  background: #2667ff;
  color: #ffffff;
  padding-inline: 32px;
  box-shadow: var(--shadow-soft);
}

.link-primary {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--color-text-muted);
  max-width: 520px;
}

.store-hero-text .subtitle {
  color: #000929 !important;
  font-size: 20px;
}

/* Store locator hero */

.store-hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
}

.store-hero-map {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, #e8f0ff 0, transparent 55%),
    radial-gradient(circle at 100% 0, #e3f4ff 0, transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.store-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.store-hero-text h1 {
  margin: 0 0 12px;
  font-size: 60px;
  line-height: 1.1;
}

.store-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.store-stats-inline .store-stat {
  box-shadow: none;
  background: transparent;
  padding-inline: 0;
  border-left: 4px solid #D4EDFF;
  border-radius: 0px;
  padding-left: 10px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.store-stat-simple .store-stat-value {
  color: var(--color-primary);
  font-size: 32px;
}

.store-stat {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(15, 35, 95, 0.08);
  min-width: 120px;
}

.store-stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.store-stat-label {
  font-size: 15px;
  color: #3B3B3E;
}

.store-hero-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.store-hero-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.store-hero-mini-cards {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.store-mini-card {
  width: 160px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 35, 95, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.store-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 35, 95, 0.18);
}

.store-mini-card img {
  height: 80px;
  object-fit: cover;
}

.store-mini-card-body {
  padding: 10px 12px 12px;
}

.store-mini-card-title {
  font-size: 13px;
  font-weight: 600;
}

.store-mini-card-city {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Filters */

.store-filters-section {
  padding-top: 0;
}

.store-filters {
  margin-top: -32px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 20px 0px #0000000D;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border: 1px solid #B1DDFF;
  gap: 16px;
  width: 70%;
}

.store-filters-section.w-100 .store-filters {
  width: 100% !important;
  justify-content: space-between !important;
}

.store-filters-actions {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 50% !important;
  /* min-width: 180px; */
}

.form-group label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.form-group select {
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  padding: 10px 14px;
  font-size: 14px;
  background: #f7f9ff;
}

/* Store cards grid */

.white-bg {
  background: #ffffff;
}

.store-filters-section {
  margin-top: 60px;
  padding-bottom: 0px !important;
}

.store-filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-results-count {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding-left: 16px;
}

.store-cards-grid {
  margin-top: 16px;
}

.store-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-card-image {
  position: relative;
}

.store-card-image img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

/* Store details page */

.store-detail-page {
  padding-top: 24px;
}

.store-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.store-detail-main h1 {
  margin: 8px 0 12px;
  font-size: 28px;
}

.back-link {
  font-size: 14px;
  color: var(--color-text-muted);
}

.store-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-bottom: 16px;
}

.store-detail-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.status-open {
  background: #e7f8ea;
  color: #1a8f3c;
}

.status-hours-label {
  color: var(--color-text-muted);
}

.store-detail-hero {
  margin-bottom: 24px;
}

.store-detail-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.store-detail-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.store-photo-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.store-detail-about h2,
.store-detail-map h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.store-detail-about p {
  color: var(--color-text-muted);
  font-size: 14px;
}

.store-detail-map {
  margin-top: 24px;
}

.store-map-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #eef2ff;
  padding: 0;
}

.store-map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.store-map-address {
  padding: 8px 12px 12px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-map-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 12px 16px;
}

.store-detail-sidebar {
  position: sticky;
  top: 88px;
}

.store-detail-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

.store-detail-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.store-detail-card p {
  margin: 0 0 12px;
  color: var(--color-text-muted);
}

.store-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}

.btn-full {
  width: 100%;
}

.store-card-body {
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-card-body h2 {
  margin: 0;
}

.store-card-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.rating-stars {
  color: #ffb020;
}

.rating-score {
  font-weight: 600;
  color: var(--color-text-main);
}

.store-card-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.store-card-title,
#store-name {
  font-size: 15px;
  font-weight: 600;
  word-break: break-all;
  margin: 6px 0 10px 0;
}

.store-card-rating {
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-card-address {
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-card-address-row {
  margin-top: 4px;
}

.store-card-meta-rows {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.store-card-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 18px;
  text-align: center;
}

.store-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.store-card-actions .btn {
  flex: 1;
}

/* CTA section */

.store-cta-section {
  background: #071637;
  color: #ffffff;
  padding: 56px 0 48px;
  margin-top: 32px;
}

.store-cta-inner {
  text-align: center;
  max-width: 640px;
}

.store-cta-inner h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.store-cta-inner p {
  margin: 0 0 20px;
  color: #e0e6ff;
  font-size: 14px;
}

.form-group {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-group select {
  border: none !important;
  background: transparent !important;
  border-radius: unset !important;
  padding-left: 0px !important;
}

.store-filters-inner {
  width: 70% !important;
  display: flex;
  gap: 16px;
}

.one-half {
  border-right: 1px solid #D4EDFF !important;
  padding-right: 10px !important;
}

.store-filters-header {
  margin-bottom: 70px;
}

.store-filters-section.w-100 {
  margin: 0;
}

.store-hero.white-bg {
  padding-bottom: 0px !important;
}

.home-page-filters .form-group {
  width: 40% !important;
}

.home-page-filters-wrapper {
  /* width: 70% !important; */
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.home-page-filters-wrapper .store-filters-inner {
  width: 50% !important;
}

.store-card-body-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Footer */

.site-footer {
  background: #031854;
  color: #ffffff;
  font-size: 13px;
}

.footer-cta {
  padding: 40px 0 32px;
  text-align: center;
}

.footer-cta-inner {
  max-width: 540px;
}

.footer-cta-inner h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.footer-cta-inner p {
  margin: 0 0 20px;
  color: #d4ddff;
  font-size: 14px;
}

.footer-cta-button {
  padding-inline: 32px;
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 16px;
}

.footer-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6b4a, #ffd66b);
}

.footer-logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-contact-label {
  font-size: 12px;
  color: #9fb0ff;
  margin-bottom: 4px;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #d4ddff;
}

.footer-right-block {
  text-align: right;
}

.footer-follow-label {
  font-size: 12px;
  color: #9fb0ff;
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #031854;
  font-size: 11px;
  font-weight: 600;
}

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

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #d4ddff;
}

/* Website footer parity */

.container-rozana {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.rozana-footer {
  background: #f8f9fc;
  border-top: 1px solid #e5eaf5;
  margin-top: 40px;
  margin-bottom: 20px;
}

.rozana-footer .div-block-1394 {
  margin: 28px 0 0;
  border: 1px solid #e5eaf5;
  border-radius: 20px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.rozana-footer .div-block-1395 {
  padding: 22px 20px;
  border-right: 1px solid #eef2f8;
}

.rozana-footer .div-block-1395:last-child {
  border-right: none;
}

.rozana-footer .heading-1725250 {
  margin: 0 0 14px;
  color: #6b748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rozana-footer .div-block-1393 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rozana-footer .link-block-111134 {
  display: inline-block;
}

.rozana-footer .text-block-256 {
  color: #1a2340;
  font-size: 14px;
  line-height: 1.4;
}

.rozana-footer .link-block-111134:hover .text-block-256 {
  color: #1141b5;
}

.rozana-footer .payment-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.rozana-footer .image-509 {
  width: 42px;
  height: 26px;
  object-fit: contain;
  border: 1px solid #e6ebf4;
  border-radius: 8px;
  padding: 3px;
  background: #ffffff;
}

.rozana-footer .div-block-1395.b-t.p-x {
  grid-column: 1 / -1;
  border-right: none;
  border-top: 1px solid #eef2f8;
  padding: 14px 20px;
}

.rozana-footer .text-block-255 {
  color: #6b748b;
  font-size: 13px;
}