/* =========================
   BASE / RESET
========================= */

html,
body {
  margin: 0;
  padding: 0;
  background: #000 !important;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3px;
}

/* Wrapper global WordPress */
#page,
.site {
  min-height: 100vh;
  background: #000;
}

/* WooCommerce fix */
.woocommerce,
.woocommerce-page {
  background: #000 !important;
}

.logo-fallback {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

.custom-logo {
  max-width: 200px;
  height: auto;
}

.custom-logo-link {
  display: inline-block;
}

/* =========================
   TIPOGRAFIA
========================= */

h1, h2, h3 {
  text-transform: uppercase;
  font-weight: 900;
}

h2 {
  font-size: 48px;
  letter-spacing: 3px;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-copy {
  flex: 1 1 480px;
  min-width: 0;
}

.hero-content h1 {
  font-size: 90px;
  line-height: 0.9;
}

.hero-visual {
  flex: 1 1 420px;
  max-width: 520px;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 960px) {
  .hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 68px;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

/* =========================
   BOTÕES
========================= */

.btn {
  padding: 14px 24px;
  border: 1px solid #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s ease;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* =========================
   GRID MERCH
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}


/* =========================
   PRODUCT CARD
========================= */

.card {
  background: #111;
  border: 1px solid #1f1f1f;
  padding: 20px;
  transition: 0.25s ease;
}

.card:hover {
  border-color: #fff;
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card:hover img {
  transform: scale(1.02);
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  background: #111;
  padding: 100px 20px;
  text-align: left;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 120px 0;
}

/* =========================
   CTA SHOP
========================= */

.cta-shop {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 120px 20px;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  padding: 20px 8%;
  border-bottom: 1px solid #111;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-nav a {
  margin-left: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.site-nav a:hover {
  opacity: 0.7;
}

/* =========================
   UTILITIES
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   PRODUCT
========================= */

.product-container {
  padding: 120px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-title {
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.product-short-description {
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ccc;
}

/* Botão WooCommerce */
.single_add_to_cart_button {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.2s ease;
}

.single_add_to_cart_button:hover {
  opacity: 0.8;
}

/* =========================
   PRODUCT PAGE – MOBILE
========================= */

@media screen and (max-width: 1080px) {

  .product-grid {
    display: block;
    gap: unset;
  }

  .product-grid > * {
    width: auto;
  }

  .product-grid > * + * {
    margin-top: 40px;
  }

  .product-container {
    padding: 80px 20px;
  }

  .product-title {
    font-size: 32px;
  }

  .product-price {
    font-size: 18px;
  }

}
