/* ------------------------------------------------------------
   SHOP PAGE STYLES — VYNAA THEME
   ------------------------------------------------------------ */

.shop-banner {
  background: linear-gradient(180deg, #f3f8f6, #ffffff);
  text-align: center;
  padding: 80px 20px 60px;
}

.shop-banner h1 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.shop-banner p {
  color: #555;
  font-size: 1rem;
}

/* GRID LAYOUT */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 60px 0;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* PRODUCT IMAGE + OVERLAY */
.product-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 77, 62, 0.75);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.view-btn {
  color: #fff;
  background: var(--accent-color);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #f2d65f;
}

/* PRODUCT TEXT */
.product-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 15px 0 5px;
}

.product-card .price {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ACTION BUTTONS */
.product-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0 20px;
}

.wishlist-btn,
.cart-btn {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wishlist-btn:hover,
.cart-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ------------------------------------------------------------
   RESPONSIVE DESIGN
   ------------------------------------------------------------ */

@media (max-width: 992px) {
  .shop-grid {
    gap: 30px;
  }

  .product-card {
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .shop-banner h1 {
    font-size: 1.8rem;
  }

  .shop-banner p {
    font-size: 0.95rem;
  }

  .product-image {
    height: 220px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .view-btn {
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 200px;
  }
}

/* ------------------------------------------------------------
   PRODUCT VIEW PAGE
   ------------------------------------------------------------ */

.product-view {
  padding: 80px 20px;
}

.product-view-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.product-image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.product-info-section h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info-section .price {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-info-section .description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-buttons {
  display: flex;
  gap: 15px;
}

.add-cart-btn,
.add-wishlist-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.add-wishlist-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.add-cart-btn:hover {
  background: #2f5b46;
}

.add-wishlist-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .product-view-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

