/* Catalogue Page Specific Styles */
.catalogue-hero {
    background: linear-gradient(135deg, #2c5e1e, #1a3a10);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
}
.catalogue-hero h1 { color: white; margin-bottom: 1rem; }
.catalogue-hero p { font-size: 1.1rem; opacity: 0.9; }

.catalogue-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Modern Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
    }

.product-card {
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}



/* IMAGE AREA - Transparent, no background, no shadow */
.product-image-area {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  padding: 20px;
    }

.product-image-area i {
    font-size: 80px;
    color: #e87c2a;
    transition: transform 0.3s ease;
}



.product-image-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e87c2a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

/* CONTENT AREA - Has the background */
.product-content-area {
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(100, 128, 60, 0.25);
    border-radius: 28px;
}

.product-content-area h3 {
    font-size: 1.4rem;
    color: #2c5e1e;
    margin-bottom: 0.5rem;
}

.product-content-area p {
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.spec-tag {
    background: rgba(44, 94, 30, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2c5e1e;
    font-weight: 500;
}

.detail-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #e87c2a;
    color: #e87c2a;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.detail-btn:hover {
    background: #e87c2a;
    color: white;
    transform: scale(0.98);
}

/* Loading and Empty States */
.loading-state, .empty-state {
    text-align: center;
    grid-column: 1/-1;
    padding: 3rem;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .products-grid {
    grid-template-columns: 1fr;
    }
}
