/* Byf41 Poker Shop Styles */

.poker-hero {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-bg-muted) 100%);
  overflow: hidden;
}

.poker-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
}

.poker-hero__content h1 {
  font-size: var(--font-size-4xl);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

.poker-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.poker-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.poker-hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  box-shadow: var(--shadow-lg);
}

.poker-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Categories Grid */

.poker-categories {
  padding: var(--space-16) 0;
}

.poker-categories__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.poker-categories__header h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.poker-categories__header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.poker-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.poker-card {
  position: relative;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.poker-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.poker-card__image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-4xl);
  overflow: hidden;
}

.poker-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.poker-card__title {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
}

.poker-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.poker-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.poker-card__price {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
}

.poker-card__link {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.poker-card__link:hover {
  color: var(--color-primary);
}

/* Products Section */

.poker-products {
  padding: var(--space-16) 0;
  background: var(--color-bg-muted);
}

.poker-products__header {
  margin-bottom: var(--space-12);
}

.poker-products__header h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.poker-products__header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.poker-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
}

.product-item {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: var(--shadow-md);
}

.product-item__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(120deg, var(--color-primary-soft), var(--color-primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-3xl);
}

.product-item__name {
  font-size: var(--font-size-md);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.product-item__price {
  font-size: var(--font-size-lg);
  color: var(--color-primary-strong);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.product-item__btn {
  width: 100%;
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-4);
}

/* Features Section */

.poker-features {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-bg-muted) 100%);
}

.poker-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.feature {
  text-align: center;
}

.feature__icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.feature__title {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.feature__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  line-height: var(--line-height-relaxed);
}

/* Responsive Design */

@media (max-width: 768px) {
  .poker-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .poker-hero__image {
    min-height: 300px;
    order: -1;
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  .poker-categories__grid {
    grid-template-columns: 1fr;
  }

  .poker-products__grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-4);
  }

  .poker-features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .poker-hero {
    padding: var(--space-12) 0;
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-2xl);
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .btn {
    width: 100%;
  }

  .poker-categories__header h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-products {
    padding: var(--space-8) 0;
  }

  .product-item__image {
    height: 150px;
    font-size: var(--font-size-2xl);
  }
}
