/* ========================== MAIN ========================== */
/* Brand Font */
@import url("https://zenplus.jp/fonts/hkgrotesk/stylesheet.css?display=swap");
/* Fallback */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap");

/* Variables */
:root {
  --zenplus-purple: #7461aa;
  --zenplus-cyan: #ee5381;
  --zenplus-yellow: #fcc201;
  --zenplus-blue: #44c3d9;
  --zenplus-bg-primary: #f5f6ff;
  --zenplus-bg-secondary: #fff;
  --zenplus-dark: #000;
  --zenplus-light: #fff;
}

/* Basic Style, Resets */
*,
html,
body,
a,
button,
span,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-weight: normal;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
a,
span,
li,
button {
  font-family: "HK Grotesk", "Montserrat", "Helvetica Neue", "Roboto",
    "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-style: normal;
  text-decoration: none;
  overflow: hidden;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 120%;
  padding-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p,
a,
li {
  font-size: 1.1rem;
  font-weight: normal;
  padding-bottom: 1rem;
}

a.zen--link {
  cursor: pointer;
  color: var(--zenplus-cyan);
  text-decoration: underline;
  font-weight: normal;
  font-size: 18px;
  line-height: 160%;
}

a.zen--link:hover {
  filter: brightness(0.95);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

img {
  max-width: 100%;
}

button {
  background-color: var(--zenplus-cyan);
  color: var(--zenplus-light);
  cursor: pointer;
  outline: none;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  border: none;
  box-shadow: 0px 2px 4px #505050;
  border-radius: 2px;
}

button:active {
  outline: none;
  border: none;
  box-shadow: none;
}

button:hover {
  filter: brightness(0.95);
}

main,
section,
footer {
  width: 100%;
  padding: 40px;
  position: relative;
}

main > *,
section > * {
  z-index: 2;
}

section h2 {
  margin: 2rem;
}

/* ========================== COMPONENTS ========================== */
/* Utilities */

.zen--divider {
  width: 100%;
  min-height: 250px;
  background: var(--zenplus-bg-primary);
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  position: absolute;
  bottom: -125px;
  left: 0;
  z-index: 0;
}

.zen--divider--top {
  width: 100%;
  min-height: 200px;
  background: var(--zenplus-bg-primary);
  clip-path: polygon(0 100%, 100% 70%, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
  z-index: -1;
}

.zen--arrow {
  width: 100%;
  min-height: 70px;
  background: var(--zenplus-bg-primary);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(99%);
  z-index: 0;
}

.zen--spacer {
  height: 8rem;
}

.zen--cta {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zen--ghost--btn {
  text-transform: uppercase;
  background: none;
  color: var(--zenplus-purple);
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid var(--zenplus-purple);
}

/* Navigation */

nav {
  width: 100%;
  padding: 2rem 40px;
  display: flex;
  align-items: center;
}

.zen--nav {
  margin: auto;
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  padding: 4rem 1rem;
}

footer img {
  max-width: 18px;
}

footer p,
footer a {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.zenplus--logo--small {
  margin: 1rem 0;
}

.zenplus--logo--small img {
  min-width: 80px;
  padding: 12px;
}

.znz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ========================== SECTIONS ========================== */
/* ==== Main Section ==== */
.zen--main {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  color: white;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.main--image {
  max-width: 100%;
  object-fit: cover;
  z-index: 2;
}

.main--image img {
  margin-left: -10px;
  border-radius: 5px;
  border: 2px solid white;
  box-shadow: 12px 12px 0px rgba(96, 116, 218, 0.7);
}

/* ==== Popular Section ==== */

.popular--items--gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(228px, 100%), 1fr));
  gap: 1rem;
  justify-items: center;
  margin: 3rem 0;
}

.popular--items--card {
  width: 228px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.popular--items--cardImage {
  position: relative;
  height: 100%;
  border-bottom: 2px solid var(--zenplus-purple);
  transition: all 0.3s;
}

.popular--items--cardImage:hover {
  cursor: pointer;
  border-bottom: 2px solid var(--zenplus-bg-primary);
}

.likeIcon,
.addCartIcon {
  position: absolute;
  bottom: 10px;
  right: 45px;
  cursor: pointer;
}

.addCartIcon {
  right: 20px;
}

.likeIcon > svg {
  fill: var(--zenplus-purple);
}

.likeIcon > svg:hover {
  fill: var(--zenplus-cyan);
}

.popular--items--cardName {
  margin-top: 1rem;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #505050;
  padding-bottom: 1rem;
}

span.popular--items--cardName {
  font-weight: bold;
}

/* ==== Categories section ==== */

.zen--categories {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zen--category--list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-items: center;
  max-width: 820px;
  padding: 1rem;
}

.zen--category {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 0;
  width: 250px;
  min-height: 50px;
  border-radius: 5px;
  border: 1px solid var(--zenplus-purple);
  font-size: 14px;
  font-weight: normal;
  color: var(--zenplus-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms;
}

.zen--category:hover {
  /* color: var(--zenplus-cyan); */
  background: var(--zenplus-purple);
  color: var(--zenplus-light);
}

/* ==== Reasons Section ==== */

.reasons--section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.zen--reason--list {
  max-width: 800px;
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}

.zen--reason {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zen--reason h3 {
  margin-top: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 21px;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.015rem;
}

.zen--reason p {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.reason--image {
  height: 76px;
  width: 76px;
}

/* CTA Section */
.cta--section {
}

/* ========================== CLASSES ========================== */
/* Helper Classes */

.bg--cyan {
  background-color: var(--zenplus-cyan);
}

.bg--purple {
  background-color: var(--zenplus-purple);
}

.bg--light {
  background-color: var(--zenplus-light);
}

.bg--primary {
  background-color: var(--zenplus-bg-primary);
}

.text--light {
  color: var(--zenplus-light);
}

.text--purple {
  color: var(--zenplus-purple);
}

.text--cyan {
  color: var(--zenplus-cyan);
}

.zen--container {
  margin: auto;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.zen--margin {
  margin-top: 10rem;
  margin-bottom: 4rem;
}

.zen--padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ========================== BREAKPOINTS ========================== */
/* Breakpoints 720px 460px */

@media (max-width: 768px) {
  .zen--main {
    grid-template-columns: 100%;
    text-align: center;
  }

  .main--image {
    width: 90%;
    margin: auto;
  }
}

/* @media (max-width: 350px) {
} */
