@import url("common.css");

.heading-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.heading-container::before {
  content: "●"; /* Bullet */
  font-size: 2rem;
  color: #ffba01;
  padding: 0%;
  margin-right: 0.5em;
}

.store-finder .heading-container,
.promo .heading-container,
.collage-row .heading-container {
  display: block;
}

.store-finder .heading-container::before,
.promo .heading-container::before,
.collage-row .heading-container::before {
  content: none;
}

.promo .heading-container h2 {
  padding-left: 0.8em;
  border-left: 3px solid #ffba01;
  line-height: 1.2;
  margin-bottom: 1em;
}

h2 {
  margin: 0%;
  text-align: left;
}

/* HERO SECTION START */
.hero {
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slogan {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  z-index: 1;
  animation: glow 3s ease-in-out infinite alternate;
  font-family: "Homemade Apple";
  text-align: center;
  pointer-events: none;
}

@keyframes glow {
  from {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #fff,
      0 0 30px rgb(234, 185, 118),
      0 0 40px #e6bc00,
      0 0 50px #e6a900,
      0 0 60px #e6ad00,
      0 0 70px #e69600;
  }
  to {
    text-shadow:
      0 0 20px #fff,
      0 0 30px rgba(252, 205, 103, 0.788),
      0 0 40px #ffc14d,
      0 0 50px rgb(250, 176, 49, 211, 77),
      0 0 60px #ffca4d,
      0 0 70px #ffc44d,
      0 0 80px #fdd360;
  }
}

.hero-button {
  display: flex;
  background: transparent;
  align-items: center;
  position: fixed;
  bottom: 2vh;
  right: 2vw;
  border-radius: 100%;
  border: none;
  padding: 0.8em;
  cursor: pointer;
  color: #ffffff;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  gap: 0.5em;
}

.hero-button img {
  width: 1.5em;
  z-index: 3;
}

.hero-button .circle {
  margin-left: 0%;
  display: flex;
  width: 3em;
  height: 3em;
  background: linear-gradient(
    90deg,
    rgb(255, 187, 1),
    rgb(255, 166, 0),
    rgb(255, 187, 1)
  );
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  bottom: 3vh;
  right: 2vw;
  z-index: 3;
}
.hero-button .circle:hover {
  background: linear-gradient(90deg, rgb(255, 187, 1), rgb(255, 166, 0));
}
/* Extension text styling */
.hero-button-extension {
  right: 5vw;
  white-space: nowrap;
  background: #fff;
  color: #000;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
  padding: 1em;
  margin: 0%;
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  transform-origin: right;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  position: fixed;
  padding-right: 2em;
}

/* Hidden by default */
.hiddenExtension {
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
  pointer-events: none;
}

.secondary {
  position: absolute;
  margin-top: 70vh;
  background: none;
  border: 2px solid #ffba01;
  border-radius: 0.8em;
  padding: 0.8em;
  cursor: pointer;
  color: #fff;
  font-family: "Montserrat";
  font-size: medium;
}

/* HERO SECTION END */

/* PROMO SECTION START */

.promo {
  padding-top: 5vh;
  display: grid;
  grid-template-columns: minmax(0, 22em) auto minmax(0, 22em);
  grid-template-areas: "c1 mid c2";
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin: auto auto 5em;
  position: relative;
}

.promo h2,
.store-finder h2 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0%;
  padding-bottom: 0%;
  margin-top: 0%;
}

.promo p {
  margin-top: 0%;
  padding-top: 0%;
}

.promo p span {
  color: #ffba01;
}

.promo .column1 {
  grid-area: c1;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  text-align: left;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.column-middle {
  grid-area: mid;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.column-middle .prim-divider {
  display: block;
  width: auto;
  height: 100%;
  max-height: 38em;
  min-height: 22em;
  opacity: 0.8;
  filter: drop-shadow(0 0 25px rgba(255, 186, 1, 0.15));
}

.promo .column2 {
  grid-area: c2;
  text-align: left;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.special-offers h2 {
  margin-top: 0%;
}

/*PROMO SECTION END/*

/*STORE FINDER START*/
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 5em 5em 0 5em;
}

.store-text p {
  margin-top: 0;
  margin-left: 0%;
}

.store-finder {
  margin-top: 20vh;
  align-items: center;
  justify-content: center;
}

.store-finder-heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3em;
  width: fit-content;
  max-width: 90vw;
  padding: 0 1em;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.store-finder-heading h2 {
  min-width: 0;
  flex: 0 1 auto;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.store-finder-heading img {
  width: 3em;
  margin-right: 1em;
}

.store-finder-map {
  position: relative;
  background-image: url("../images/croatia.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30em;
  min-width: 260px;
  aspect-ratio: 1 / 1;
  font-size: 0.85vw;
}

.store-finder-map svg {
  position: absolute;
  width: 1.8em;
  fill: #fff;
  transition: fill ease-in-out 0.5s;
  cursor: pointer;
}

.store-finder-map svg:hover {
  fill: #ffba01;
}

.shop_samobor svg {
  top: 25%;
  left: 37%;
}
.shop_zagreb svg {
  top: 21%;
  left: 42%;
}
.shop_osijek svg {
  top: 30%;
  left: 85%;
}
.shop_slavonskibrod svg {
  top: 36%;
  left: 70%;
}
.shop_požega svg {
  top: 33%;
  left: 63%;
}
.shop_vinkovci svg {
  top: 35.5%;
  left: 87%;
}
.shop_čakovec svg,
.shop_varaždin svg {
  top: 13%;
  left: 47%;
}
.shop_đakovo svg {
  top: 34.5%;
  left: 80%;
}

.store-text {
  width: 25vw;
  min-width: 19em;
  flex: 1 1 22em;
  max-width: 26em;
  box-sizing: border-box;
  text-align: left;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  padding: 1.8em 1.6em;
}

.store-text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  padding-left: 0.8em;
  border-left: 3px solid #ffba01;
  color: #fff;
  line-height: 1.2;
}

.store-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.store-dropdown {
  margin: 0;
}

#citySelect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8em;
  padding: 0.85em 1em;
  border-radius: 0.9em;
  border: 1px solid rgba(255, 186, 1, 0.4);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

.display-store,
.row-button a {
  box-sizing: border-box;
}

#citySelect:focus-within {
  border-color: #ffba01;
  background: rgba(255, 186, 1, 0.08);
}

#citySelect h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 186, 1, 0.9);
}

#citySelector {
  flex: 1;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: right;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  padding-right: 1.4em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffba01' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1em;
}

#citySelector option {
  background-color: #1f1b15;
  color: #fff;
  font-weight: 600;
}

.display-store {
  text-align: left;
  border-radius: 1em;
  padding: 1.1em 1.2em;
  border: 1px solid rgba(255, 186, 1, 0.18);
  background: rgba(24, 20, 14, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.display-store > div:not(.hidden) ~ div:not(.hidden) {
  padding-top: 0.9em;
  border-top: 1px solid rgba(255, 186, 1, 0.18);
}

.display-store h2 {
  margin: 0 0 0.4em;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffba01;
  line-height: 1.2;
}

.store-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}

.store-row a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  border-radius: 0.6em;
  border: 1px solid rgba(255, 186, 1, 0.35);
  background: rgba(255, 186, 1, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.store-row a:hover {
  background: rgba(255, 186, 1, 0.22);
  border-color: #ffba01;
  transform: translateY(-2px);
}

.display-store img {
  width: 1.2em;
  height: 1.2em;
}

.display-store p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.row-button {
  background: transparent;
  border: none;
  margin: 0.2em 0 0;
}

.row-button a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8em;
  width: 100%;
  padding: 0.95em 1.2em;
  border-radius: 0.9em;
  border: 1px solid rgba(255, 186, 1, 0.45);
  background: linear-gradient(
      180deg,
      rgba(255, 186, 1, 0.15) 0%,
      rgba(255, 186, 1, 0.06) 100%
    ),
    rgba(24, 20, 14, 0.5);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 186, 1, 0.22);
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.row-button a:hover {
  background: linear-gradient(
      180deg,
      rgba(255, 186, 1, 0.28) 0%,
      rgba(255, 186, 1, 0.12) 100%
    ),
    rgba(24, 20, 14, 0.5);
  border-color: #ffba01;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 186, 1, 0.25),
    inset 0 1px 0 rgba(255, 186, 1, 0.35);
}

.row-button a p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: #ffffff;
  text-align: left;
  flex: 1 1 auto;
}

.row-button img {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(76%) sepia(57%) saturate(1942%)
    hue-rotate(2deg) brightness(103%) contrast(103%);
  transition: transform 0.25s ease;
}

.row-button a:hover img {
  transform: translateX(4px);
}

/*STORE FINDER END*/

/*MOVING IMAGE COLLAGE*/
.company-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 5em;
}

.company-info h1 {
  margin-top: 2em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1em;
  padding-bottom: 0%;
}

.company-info h2 {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.company-info p {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.collage-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin: 4em auto 0;
  padding: 0 4em;
  max-width: 1400px;
  flex-wrap: wrap;
}

.collage-row .heading-container {
  flex: 1 1 26em;
  max-width: 32em;
  min-width: 0;
}

.collage-row .column {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em 1.8em;
  text-align: left;
  box-sizing: border-box;
  flex: 0 1 auto;
}

.collage-row .column h2 {
  margin: 0;
  padding-left: 0.8em;
  border-left: 3px solid #ffba01;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.collage-row .column h3 {
  margin: 0.6em 0 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffba01;
}

.collage-row .column p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.photo-marquee {
  flex: 1 1 30em;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  padding: 2.5em 0;
  -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.photo-track {
  display: flex;
  gap: 1em;
  width: max-content;
  animation: photo-scroll 50s linear infinite;
  will-change: transform;
}

.photo-marquee.reverse .photo-track {
  animation-direction: reverse;
}

.photo-marquee:hover .photo-track {
  animation-play-state: paused;
}

.photo-item {
  flex: 0 0 auto;
  width: 15em;
  aspect-ratio: 4 / 5;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.1em;
  border: 1px solid rgba(255, 186, 1, 0.22);
  background: rgba(24, 20, 14, 0.5);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}

.photo-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(10, 8, 3, 0.65) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.photo-item:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(255, 186, 1, 0.55);
  box-shadow: 0 22px 48px rgba(255, 186, 1, 0.22),
    0 14px 32px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.photo-item:hover::after {
  opacity: 1;
}

.photo-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-item:hover img {
  transform: scale(1.08);
}

@keyframes photo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5em));
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-track {
    animation: none;
  }
}

.column {
  display: flex;
  flex: 0 0 30em;
  flex-direction: column;
  text-align: left;
}

.about-heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3em;
  margin-top: 5em;
}

.about-heading img {
  width: 3em;
  margin-right: 1em;
}

.about-heading h2 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0%;
  padding-bottom: 0%;
}
/*ABOUT SECTION END*/

/* MEDIA QUERIES START */

/* Narrower layout: middle column sticks to the left, column1+column2 stack beside it */
@media (max-width: 1100px) {
  .promo {
    grid-template-columns: auto minmax(0, 24em);
    grid-template-areas:
      "mid c1"
      "mid c2";
    gap: 2em 2.5em;
    align-items: start;
  }

  .column-middle .prim-divider {
    max-height: 34em;
    min-height: 20em;
  }
}

@media (max-width: 768px) {
  .hero img {
    width: 80%;
    height: auto;
  }

  html {
    width: 100vw;
  }

  .hero {
    height: 100vh;
    align-items: center;
  }

  .promo {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "c1"
      "c2";
    gap: 2em;
    padding: 4vh 1.5em 0 1.5em;
    margin-bottom: 3em;
    justify-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .promo .column1,
  .promo .column2 {
    width: 100%;
    max-width: 22em;
    text-align: left;
  }

  .column-middle {
    display: none;
  }

  .promo .heading-container {
    width: 100%;
    margin-right: 0;
    z-index: 2;
  }

  .store-finder {
    align-items: center;
  }

  #content > div.store-finder > div.store-finder-heading {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 70vw;
    padding: 0 1em;
    margin: auto;
    height: auto;
    box-sizing: border-box;
  }

  #content > div.store-finder > div.store-finder-heading h2 {
    text-align: center;
  }

  #content .store-finder-map {
    width: 70em;
    height: auto;
    margin-top: 2em;
  }

  .store-finder-map svg {
    width: 4em;
  }

  .collage-row {
    gap: 2em;
    padding: 0 1.5em;
    margin-top: 2.5em;
    flex-direction: column;
    align-items: center;
  }

  .photo-marquee {
    flex: 0 0 auto;
    width: 100%;
    max-width: 90vw;
  }

  .collage-row .heading-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 90vw;
  }

  .collage-row .column {
    width: 100%;
    max-width: 90vw;
    box-sizing: border-box;
    padding: 1.3em 1.1em;
    gap: 0.65em;
    flex: 0 0 auto;
  }

  .collage-row .column h2 {
    font-size: 1rem;
    padding-left: 0.7em;
  }

  .collage-row .column h3 {
    font-size: 0.72rem;
    margin-top: 0.4em;
  }

  .collage-row .column p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .store-finder .row {
    padding: 2em 1em 0;
    gap: 1.2em;
  }

  .store-finder .heading-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .store-text {
    width: 100%;
    max-width: 28em;
    min-width: 0;
    padding: 1.4em 1.3em;
    margin: 0 auto;
  }

  .column {
    flex: 0 1 30em;
    min-width: 0;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero img {
    width: 80%;
    height: auto;
  }

  html {
    width: 100vw;
  }

  .hero {
    height: 100vh;
    align-items: center;
  }

  .promo {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "c1"
      "c2";
    gap: 2em;
    padding: 4vh 1.5em 0 1.5em;
    margin-bottom: 3em;
    justify-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .promo .column1,
  .promo .column2 {
    width: 100%;
    max-width: 22em;
    text-align: left;
  }

  .column-middle {
    display: none;
  }

  .promo .heading-container {
    width: 100%;
    margin-right: 0;
    z-index: 2;
  }

  .store-finder {
    align-items: center;
  }

  #content > div.store-finder > div.store-finder-heading {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 70vw;
    padding: 0 1em;
    margin: auto;
    height: auto;
    box-sizing: border-box;
  }

  #content > div.store-finder > div.store-finder-heading h2 {
    text-align: center;
  }

  #content .store-finder-map {
    width: 70em;
    height: auto;
    margin-top: 2em;
  }

  .store-finder-map svg {
    width: 4em;
  }

  .collage-row {
    gap: 2em;
    padding: 0 1.5em;
    margin-top: 2.5em;
    flex-direction: column;
    align-items: center;
  }

  .photo-marquee {
    flex: 0 0 auto;
    width: 100%;
    max-width: 90vw;
  }

  .photo-item {
    width: 14em;
  }

  .collage-row .heading-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 90vw;
  }

  .collage-row .column {
    width: 100%;
    max-width: 90vw;
    box-sizing: border-box;
    padding: 1.3em 1.1em;
    gap: 0.65em;
    flex: 0 0 auto;
  }

  .collage-row .column h2 {
    font-size: 1rem;
    padding-left: 0.7em;
  }

  .collage-row .column h3 {
    font-size: 0.72rem;
    margin-top: 0.4em;
  }

  .collage-row .column p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .store-finder .row {
    padding: 2em 1em 0;
    gap: 1.2em;
  }

  .store-finder .heading-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .store-text {
    width: 100%;
    max-width: 28em;
    min-width: 0;
    padding: 1.4em 1.3em;
    margin: 0 auto;
  }

  .column {
    flex: 0 1 30em;
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .promo,
  .store-finder,
  .collage-row,
  .about-heading {
    padding-left: 0.75em;
    padding-right: 0.75em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
  }

  .column-middle .prim-divider {
    max-height: 18em;
    min-height: 12em;
  }

  #content > div.store-finder > div.row > div.heading-container > div > h2 {
    text-align: left;
  }

  .about-heading h2 {
    font-size: 1.4rem;
  }

  .about-heading {
    margin-top: 3em;
    height: 2.5em;
  }

  .about-heading img {
    width: 2.2em;
    margin-right: 0.7em;
  }

  .company-info h1 {
    font-size: 1.6rem;
    margin-top: 1.4em;
  }

  .collage-row h2 {
    font-size: 1.4rem;
  }

  .collage-row .heading-container {
    width: 90%;
    justify-content: center;
  }

  .collage-row .heading-container p {
    font-size: 0.7rem;
  }

  .promo {
    margin-left: 0;
    max-width: 100%;
  }

  .promo h2,
  .store-finder h2 {
    font-size: 1.5rem;
  }

  .promo p {
    font-size: 0.7rem;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .store-finder-heading h2 {
    max-width: 100%;
  }

  .promo .heading-container {
    width: 90%;
    justify-content: center;
  }

  #citySelect {
    width: 100%;
    margin-bottom: 1em;
  }

  body {
    right: 0%;
    margin: 0%;
    padding: 0%;
  }

  #content {
    margin: 0;
    padding: 0;
  }

  html {
    width: 100vw;
    height: 100vh;
  }

  .hero {
    height: 100vh;
    width: 100vw;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .hero-logo {
    width: 100vw;
    height: auto;
  }

  .store-text {
    width: 100%;
    max-width: 26em;
    min-width: 0;
    padding: 1.3em 1.2em;
  }
  .store-text h2 {
    font-size: 1.1rem;
  }

  .store-finder .row {
    padding-top: 0;
  }

  #citySelect {
    width: 100%;
  }

  #content
    > div.store-finder
    > div.row
    > div.heading-container
    > div
    > div:nth-child(5) {
    width: 90%;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .hero-slogan :is(h1, h2) {
    font-size: 1.3rem;
  }
}

@media (max-width: 375px) {
  #content > div.store-finder > div.store-finder-heading {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
  }

  #content > div.store-finder > div.store-finder-heading > img {
    width: 2.5em;
    margin-right: 0;
  }
}

@media (max-width: 320px) {
  #content > div.store-finder > div.store-finder-heading > img {
    width: 2.2em;
  }

  .hero-slogan :is(h1, h2) {
    font-size: 1.1rem;
  }
}
/* MEDIA QUERIES END */
