/* AWD_CATALOGUE_V2 */

body.woocommerce-shop,
body.tax-product_cat {
  background: #070a0c;
}

.awd-catalogue {
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #070a0c;
}

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

/* Hero editorial */
.awd-catalogue__hero {
  position: relative;
  isolation: isolate;
  padding: clamp(85px, 10vw, 150px) 0 clamp(65px, 8vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 78% 30%, rgba(205,255,0,.15), transparent 30%),
    linear-gradient(120deg, #070a0c 45%, #101608);
}

.awd-catalogue__hero::before {
  content: "AWD";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 2vw;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(150px, 28vw, 430px);
  line-height: .7;
  letter-spacing: -.07em;
  -webkit-text-stroke: 1px rgba(205,255,0,.13);
  transform: translateY(-50%);
  pointer-events: none;
}

.awd-catalogue__hero::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 42%;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    transparent,
    rgba(205,255,0,.75),
    transparent
  );
}

.awd-catalogue__hero .awd-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #d7ff00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.awd-catalogue__hero .awd-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #d7ff00;
}

.awd-catalogue__hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(66px, 10vw, 145px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.awd-catalogue__hero h1::after {
  content: ".";
  color: #d7ff00;
}

.awd-catalogue__hero p {
  max-width: 780px;
  margin: 34px 0 0;
  color: #aab0b5;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.75;
}

/* Área dos produtos */
.awd-catalogue__products {
  position: relative;
  padding: clamp(65px, 8vw, 110px) 0 130px;
}

.awd-catalogue__products::before {
  content: "EXPLORE THE COLLECTION";
  display: block;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 28px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: #747b82;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

.awd-catalogue .awd-product-grid {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

/* Cards */
.awd-catalogue .awd-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: #11161a;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.awd-catalogue .awd-product-card:hover {
  border-color: rgba(215,255,0,.65);
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
  transform: translateY(-7px);
}

.awd-catalogue .awd-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #090c0f;
}

.awd-catalogue .awd-product-card__media::after {
  content: "VIEW PRODUCT  ↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #080a0c;
  background: #d7ff00;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(8px);
  transition: .22s ease;
}

.awd-catalogue .awd-product-card:hover
.awd-product-card__media::after {
  opacity: 1;
  transform: translateY(0);
}

.awd-catalogue .awd-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform .45s ease;
}

.awd-catalogue .awd-product-card:hover
.awd-product-card__media img {
  transform: scale(1.035);
}

.awd-catalogue .awd-product-card__body {
  display: flex;
  min-height: 215px;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.awd-catalogue .awd-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 29px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(215,255,0,.4);
  border-radius: 999px;
  color: #d7ff00;
  background: rgba(215,255,0,.08);
  font-size: clamp(8px, .7vw, 10px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.awd-catalogue .awd-product-card h2 {
  margin: 22px 0 30px;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.awd-catalogue .awd-product-card h2 a {
  color: inherit;
  text-decoration: none;
}

.awd-catalogue .awd-product-card__bottom {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.awd-catalogue .awd-product-card__price {
  color: #d7ff00;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 900;
}

.awd-catalogue .awd-product-card__price del {
  color: #777;
  font-size: .75em;
}

.awd-catalogue .awd-product-card__price ins {
  text-decoration: none;
}

.awd-catalogue .awd-product-card__arrow {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: .2s ease;
}

.awd-catalogue .awd-product-card__arrow:hover {
  border-color: #d7ff00;
  color: #080a0c;
  background: #d7ff00;
}

.awd-catalogue__empty {
  padding: 30px;
  border: 1px solid rgba(215,255,0,.4);
  border-radius: 18px;
  background: #11161a;
}

/* Tablet */
@media (max-width: 900px) {
  .awd-catalogue__hero::after {
    display: none;
  }

  .awd-catalogue .awd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Celular */
@media (max-width: 600px) {
  .awd-catalogue .awd-container,
  .awd-catalogue__products::before {
    width: min(100% - 30px, 440px);
  }

  .awd-catalogue__hero {
    padding: 65px 0 60px;
  }

  .awd-catalogue__hero h1 {
    font-size: clamp(55px, 19vw, 84px);
  }

  .awd-catalogue__hero p {
    margin-top: 24px;
    font-size: 14px;
  }

  .awd-catalogue__products {
    padding-top: 55px;
  }

  .awd-catalogue .awd-product-grid {
    grid-template-columns: 1fr !important;
  }

  .awd-catalogue .awd-product-card__body {
    min-height: 190px;
  }

  .awd-catalogue .awd-badge {
    font-size: 9px;
  }
}

/* AWD_CATALOGUE_REFINED_TYPE_V3 */
.awd-catalogue__hero h1 {
  max-width: 850px;
  font-family:
    Inter,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 750;
  line-height: .91;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.awd-catalogue__hero h1::after {
  margin-left: .025em;
}

.awd-catalogue__hero p {
  max-width: 820px;
  font-family:
    Inter,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 400;
  letter-spacing: -.015em;
}

@media (max-width: 600px) {
  .awd-catalogue__hero h1 {
    font-size: clamp(46px, 14.5vw, 70px);
    line-height: .94;
  }
}

/* AWD_CATALOGUE_THIN_TITLE_V4 */
body.woocommerce-shop .awd-catalogue__hero h1,
body.tax-product_cat .awd-catalogue__hero h1 {
  max-width: 940px !important;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif !important;
  font-size: clamp(52px, 6.8vw, 100px) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-stretch: normal !important;
  line-height: .94 !important;
  letter-spacing: -.06em !important;
  text-transform: uppercase !important;
}

@media (max-width: 600px) {
  body.woocommerce-shop .awd-catalogue__hero h1,
  body.tax-product_cat .awd-catalogue__hero h1 {
    font-size: clamp(43px, 13vw, 64px) !important;
    font-weight: 500 !important;
    line-height: .97 !important;
  }
}

/* AWD_CATALOGUE_LIGHT_TITLE_V5 */
body.woocommerce-shop .awd-catalogue__hero h1,
body.tax-product_cat .awd-catalogue__hero h1 {
  max-width: 850px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(44px, 5.2vw, 78px) !important;
  font-weight: 300 !important;
  font-style: normal !important;
  font-stretch: normal !important;
  font-variation-settings: "wght" 300 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  -webkit-text-stroke: 0 transparent !important;
  text-shadow: none !important;
}
@media (max-width:600px) {
  body.woocommerce-shop .awd-catalogue__hero h1,
  body.tax-product_cat .awd-catalogue__hero h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
    font-weight: 300 !important;
    line-height: 1.04 !important;
  }
}

/* AWD_CATALOGUE_EXACT_PRODUCT_FONT_V6 */
@font-face {
  font-family: "AWDArchivo";
  src: url("../fonts/archivo-black.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

body.woocommerce-shop .awd-catalogue__hero h1,
body.tax-product_cat .awd-catalogue__hero h1 {
  max-width: 1000px !important;
  font-family: "AWDArchivo", Arial, sans-serif !important;
  font-size: clamp(66px, 7vw, 124px) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  font-stretch: normal !important;
  font-variation-settings: normal !important;
  line-height: .84 !important;
  letter-spacing: -.065em !important;
  -webkit-text-stroke: 0 transparent !important;
  text-shadow: none !important;
}

@media (max-width: 600px) {
  body.woocommerce-shop .awd-catalogue__hero h1,
  body.tax-product_cat .awd-catalogue__hero h1 {
    font-size: clamp(50px, 14vw, 78px) !important;
    line-height: .88 !important;
  }
}
