/* Ürünlerimiz Sayfası Özel Stilleri */

/* Products Hero Banner */
.products-hero {
  position: relative;
  height: 40vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tactical-green);
  border-bottom: 2px solid var(--muted-gold);
  padding-top: 80px;
  overflow: hidden;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  filter: grayscale(50%);
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--tactical-green), transparent);
  z-index: 1;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  position: relative;
  height: 420px;
  background-color: #121c2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.product-card:hover {
  border-color: var(--muted-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.product-card:hover .product-card-bg {
  opacity: 0.3;
  transform: scale(1.05);
}

/* For typographic cards without images */
.product-card-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}

.product-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,48,34,0.55) 0%, rgba(18,28,44,0.65) 100%);
  z-index: 1;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 2;
}

.product-content {
  position: relative;
  z-index: 10;
  padding: 32px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-family: var(--font-mono-family);
  font-size: 11px;
  color: var(--muted-gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.product-title {
  font-family: var(--font-h-family);
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-icon-large {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  transition: color 0.4s ease;
}

.product-card:hover .product-icon-large {
  color: var(--muted-gold);
}

.product-action {
  font-family: var(--font-mono-family);
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.product-action .material-symbols-outlined {
  font-size: 16px;
  color: var(--muted-gold);
}

.product-card:hover .product-action {
  opacity: 1;
  transform: translateY(0);
}

/* Corner Accents */
.card-corner-tr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 20;
  transition: border-color 0.3s ease;
}

.card-corner-bl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 20;
  transition: border-color 0.3s ease;
}

.product-card:hover .card-corner-tr,
.product-card:hover .card-corner-bl {
  border-color: var(--muted-gold);
}
