/* Tent Page Styles */

.tent-section {
  padding: 2rem 0;
}

.tent-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.tent-gallery {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.tent-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.tent-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tent-code {
  color: var(--text-light);
  font-size: 0.875rem;
}

.tent-price-block {
  margin-bottom: 2rem;
}

.tent-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}

.old-tent-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: 1rem;
}

.tent-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tent-advantages,
.tent-sizes {
  margin-bottom: 2rem;
}

.tent-advantages h3,
.tent-sizes h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text-color);
}

.tent-advantages ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.tent-advantages ul li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.size-options {
  display: grid;
  gap: 1rem;
}

.size-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.size-label {
  font-weight: 600;
  color: var(--text-color);
}

.size-value {
  color: var(--primary-color);
  font-weight: 500;
}

.tent-tabs {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

/* Care Instructions */
.care-instructions {
  display: grid;
  gap: 2rem;
}

.care-section {
  padding: 1.5rem;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.care-section h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.125rem;
}

.care-section h3 i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.care-section ul {
  list-style: none;
  padding: 0;
}

.care-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.care-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Installation Steps */
.installation-steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 1.125rem;
}

.step-content p {
  color: var(--text-light);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tent-layout {
    grid-template-columns: 1fr;
  }

  .tent-features-list {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .care-instructions {
    gap: 1rem;
  }
}