/* Collections Page Styles */

/* Collections Hero */
.collections-hero {
  background: linear-gradient(135deg, var(--primary), #740000);
  color: var(--light);
  padding: 6rem 0 4rem;
  text-align: center;
}

.collections-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.collections-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Collections Grid */
.collections-grid {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
}

.collection-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.collection-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.collection-item:nth-child(even) .item-image {
  order: 2;
}

.collection-item:nth-child(even) .item-info {
  order: 1;
}

/* Item Image */
.item-image {
  position: relative;
  overflow: hidden;
}

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

.collection-item:hover .item-image img {
  transform: scale(1.05);
}

/* Item Info */
.item-info {
  direction: rtl;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-info h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.price {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Features List */
.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .collections-hero h1 {
    font-size: 2.5rem;
  }
  
  .collections-hero p {
    font-size: 1rem;
  }
  
  .collection-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .collection-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .collection-item:nth-child(even) .item-image,
  .collection-item:nth-child(even) .item-info {
    order: unset;
  }
  
  .item-image img {
    height: 300px;
  }
  
  .item-info {
    padding: 2rem;
  }
  
  .item-info h3 {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .collections-grid {
    padding: 2rem 0;
    gap: 2rem;
  }
  
  .item-info {
    padding: 1.5rem;
  }
  
  .collections-hero {
    padding: 4rem 0 3rem;
  }
}
