/* Travel Gear Styles */

/* Gear Hero */
.gear-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin-bottom: 3rem;
}

.gear-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gear-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.gear-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.gear-hero__breadcrumb {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.gear-hero__breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
}

.gear-hero__breadcrumb .separator {
  margin: 0 0.5rem;
}

.gear-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gear-hero__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #4b5563;
}

.gear-hero__meta .brand {
  font-weight: 600;
}

.gear-hero__rating-price {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating .stars {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f59e0b;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
}

.gear-hero__actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.btn--primary {
  background: #3b82f6;
  color: white;
}

.btn--primary:hover {
  background: #2563eb;
}

.btn--secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn--secondary:hover {
  background: #eff6ff;
}

/* Gear Content */
.gear-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin-bottom: 4rem;
}

.gear-content__main {
  min-width: 0;
}

.gear-section {
  margin-bottom: 3rem;
}

.gear-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.gear-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #374151;
}

/* Gallery */
.gear-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gear-gallery__grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #f9fafb;
  border-left: 4px solid #3b82f6;
  border-radius: 0.25rem;
}

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.pros {
  background: #ecfdf5;
  border: 1px solid #10b981;
}

.cons {
  background: #fef2f2;
  border: 1px solid #ef4444;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.pros li:before {
  content: "✓ ";
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

.cons li:before {
  content: "✗ ";
  color: #ef4444;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Sidebar */
.gear-content__sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.sidebar-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.quick-specs dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
}

.quick-specs dt {
  font-weight: 600;
  color: #6b7280;
}

.quick-specs dd {
  color: #1f2937;
}

/* Gear Cards (Index/Teaser) */
.gear-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gear-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.gear-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gear-card__image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gear-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gear-card:hover .gear-card__image img {
  transform: scale(1.05);
}

.gear-card__rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #f59e0b;
}

.gear-card__content {
  padding: 1.5rem;
}

.gear-card__category {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gear-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.gear-card__brand {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.gear-card__description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gear-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.gear-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
}

.gear-card__cta {
  color: #3b82f6;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .gear-content {
    grid-template-columns: 1fr;
  }

  .gear-content__sidebar {
    position: static;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gear-hero__title {
    font-size: 2rem;
  }

  .gear-hero__content {
    padding: 2rem 0;
  }
}
