:root {
  --primary-color: #007bff;
  /* Vibrant Blue for actions */
  --secondary-color: #6f42c1;
  /* Deep Purple for highlights */
  --bg-light: #f0f2f5;
  /* Clean light background */
  --card-base: #ffffff;
  /* Pure white card base */
  --text-dark: #212529;
  --text-muted: #6c757d;
}

h2.main-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 2rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.5px;
}

/* --- 1. PRODUCT CARD BASE (Floating Wave) --- */
.product-card {
  background: var(--card-base);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-height: 480px;
  /* Slightly taller for the wave effect */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  /* Deeper shadow */
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  /* Optimize for animation */
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* --- 2. IMAGE CONTAINER & WAVE SHAPE --- */
.image-container {
  height: 220px;
  background: var(--bg-light);
  /* Lighter background for image section */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  /* Match card border-radius */
  z-index: 1;
  /* Ensure image is above wave */
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image {
  transform: scale(1.08) rotateZ(-1deg);
  /* Slight rotation for dynamic feel */
}

.wave-shape {
  position: absolute;
  bottom: -2px;
  /* Overlap slightly with image */
  left: 0;
  width: 100%;
  height: 40px;
  /* Height of the wave effect */
  background: var(--card-base);
  /* Match card base color */
  /* Custom SVG wave shape (can be replaced with an actual SVG) */
  clip-path: ellipse(150% 100% at 50% 100%);
  /* Adjust to create wave */
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
  /* Below content, above image */
}

.product-card:hover .wave-shape {
  clip-path: ellipse(170% 120% at 50% 100%);
  /* More pronounced wave on hover */
}

.rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(111, 66, 193, 0.4);
  z-index: 10;
}

/* --- 3. PRODUCT BODY --- */
.product-body {
  padding: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 3;
  /* Ensure text is above wave */
}

.product-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.store-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.price-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  /* Dotted separator */
}

.product-price-display {
  font-family: "Orbitron", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-muted);
}

.stars-display {
  font-size: 0.95rem;
  color: var(--secondary-color);
}

/* --- 4. ACTION FOOTER (Smooth Slide-Up) --- */
.action-footer {
  padding: 20px 25px;
  background: var(--card-base);
  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  transform: translateY(0);
  /* Initial state */
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .action-footer {
  transform: translateY(-10px);
  /* Lift footer slightly on hover */
}

/* ACTION BUTTON (Animated Gradient) */
.action-button {
  background: var(--primary-color);
  border: none;
  color: white;
  font-weight: 700;
  transition: all 0.4s ease-out;
  font-size: 1rem;
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.action-button:hover {
  color: white;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  /* Gradient on hover */
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4), 0 8px 25px rgba(111, 66, 193, 0.4);
  transform: translateY(-2px) scale(1.01);
  letter-spacing: 0.5px;
}

/* SECONDARY ACTIONS */
.secondary-actions {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  /* Initially hidden */
  transform: translateY(10px);
  /* Slide from bottom */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: 0.1s;
  /* Slight delay for effect */
}

.product-card:hover .secondary-actions {
  opacity: 1;
  transform: translateY(0);
}

.secondary-actions .icon-link {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}

.secondary-actions .icon-link:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}

/* Status colors with subtle glow */
.icon-link.text-success {
  color: #28a745 !important;
  text-shadow: 0 0 5px rgba(40, 167, 69, 0.1);
}

.icon-link.text-danger {
  color: #dc3545 !important;
  text-shadow: 0 0 5px rgba(220, 53, 69, 0.1);
}

.icon-link.text-info {
  color: #17a2b8 !important;
  text-shadow: 0 0 5px rgba(23, 162, 184, 0.1);
}

/* Responsive */
.col-lg-4 {
  width: 33.333333%;
}

@media (max-width: 991.98px) {
  .col-lg-4 {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .col-lg-4 {
    width: 100%;
  }
}/*# sourceMappingURL=productDesign5.css.map */