/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600&display=swap');

/* ===== TAILWIND CUSTOM FONTS ===== */
.font-bebas { font-family: 'Bebas Neue', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* ===== CART MODAL ACTIVE STATE ===== */
.cart-modal.active {
  display: flex !important;
}

/* ===== PRODUCT CARD ANIMATIONS ===== */
.product-card {
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.6s ease;
}

/* ===== BTN-ADD ===== */
.btn-add {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  padding: 10px 20px;
}

.btn-add:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ===== CART ITEMS ===== */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}

.cart-item-name { color: #fff; }
.cart-item-price { color: #888; }

.empty-cart {
  color: #888;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}

/* ===== HERO VIDEO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
