/* Dealer Details Page Styles */
/* Dealer Detail Container */
.dealer-detail-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 0px;
}

.dealer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Images Section */
.images-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.main-image-card {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main-image {
  flex: 1;
  background-color: #E5E7EB;
  overflow: hidden;
  min-height: 400px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Dealer Gallery Section */
.gallery-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #E5E7EB;
}

.gallery-title {
  font-size: 28px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 30px;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-image-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image-card:hover img {
  transform: scale(1.05);
}

/* Details Section */
.details-section {
  background-color: white;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dealer-name {
  font-size: 26px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 8px;
}

.dealer-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  background-color: white;
  color: #1C1C1C;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #BE930B;
}

.tag.service {
  border-color: #1C1C1C;
}

.details-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-title {
  font-size: 16px;
  font-weight: bold;
  color: #1C1C1C;
}

.detail-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(28, 28, 28, 0.7);
}

.detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.detail-text {
  flex: 1;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(28, 28, 28, 0.7);
}

.detail-list-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E5E7EB;
}

.call-button {
  flex: 1;
  background-color: #BE930B;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #d4a612;
}

.email-button {
  flex: 1;
  border: 1px solid #BE930B;
  color: #BE930B;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-button:hover {
  background-color: #BE930B;
  color: white;
}

/* Image Zoom Modal */
.image-zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-zoom-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #E5E7EB;
}

.zoomed-image {
  max-width: 100%;
  max-height: 90vh;
  object-contain;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .dealer-name {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .dealer-detail-container {
    padding: 30px 20px;
  }
  
  .details-section {
    padding: 30px 20px;
  }
  
  .dealer-name {
    font-size: 26px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .main-image {
    height: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .gallery-title {
    font-size: 24px;
  }
}