/* Product Styles */
.product-3d {
  perspective: 1000px;
  margin-bottom: 1.5rem;
}

.product-rotate {
  width: 100%;
  height: 250px;
  position: relative;
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-rotate .icon-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.product-rotate:hover .icon-placeholder {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.product-card {
  background-color: var(--dark-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.product-specs {
  margin: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.spec-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  font-weight: 700;
  color: var(--secondary-color);
}

.material-card {
  background-color: var(--dark-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.material-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.configurator-placeholder {
  background-color: var(--dark-color);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.configurator-message i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.configurator-message h3 {
  margin-bottom: 1rem;
}

.configurator-message p {
  margin-bottom: 1.5rem;
}

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