/* =============================================================================
   DEVA CUSTOM PRODUCT CARD STYLES (Independent of WooCommerce)
   ============================================================================= */

/* DEVA Products Grid Container */
.deva-products-grid {
  display: grid;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

/* Column variations */
.deva-products-grid.columns-1 {
  grid-template-columns: 1fr;
}
.deva-products-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.deva-products-grid.columns-3 {
  grid-template-columns: repeat(4, 1fr);
}
.deva-products-grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.deva-products-grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Responsive Grid */
@media (max-width: 1400px) {
  .deva-products-grid.columns-5,
  .deva-products-grid.columns-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .deva-products-grid,
  .deva-products-grid.columns-4,
  .deva-products-grid.columns-5,
  .deva-products-grid.columns-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .deva-products-grid,
  .deva-products-grid.columns-3,
  .deva-products-grid.columns-4,
  .deva-products-grid.columns-5,
  .deva-products-grid.columns-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .deva-products-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
}

/* DEVA Product Card */
.deva-product-card {
  background: #fff;
  border: 1px solid #b5d1a7;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deva-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(181, 209, 167, 0.3);
}

/* DEVA Product Link */
.deva-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* DEVA Product Image Wrapper */
.deva-product-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.deva-product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.deva-product-card:hover .deva-product-image {
  transform: scale(1.02);
}

.deva-product-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #b5d1a7, #9bc48a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
}

/* DEVA Favorite Heart */
.deva-favorite-heart {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.deva-favorite-heart:hover {
  background: #fff;
  transform: scale(1.1);
}

.deva-favorite-heart.loading {
  opacity: 0.7;
  cursor: not-allowed;
  animation: pulse 1.5s infinite;
}

.deva-favorite-heart.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.deva-favorite-heart svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  transition: fill 0.3s ease;
  stroke: #666;
  stroke-width: 1;
}

.deva-favorite-heart.active svg {
  fill: #e74c3c;
  stroke: #e74c3c;
}

.deva-favorite-heart:hover svg {
  fill: #e74c3c;
  stroke: #e74c3c;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* DEVA Price Overlay - Current Price Only */
.deva-price-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FAFAFA;
  color: #202F19;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(181, 209, 167, 0.95);
}

/* DEVA Sale Badge */
.deva-sale-badge {
  position: absolute;
  bottom: 15px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
}

/* DEVA Product Info */
.deva-product-info-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deva-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deva-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0px;
}

/* DEVA Product Title */
.deva-product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.deva-product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.deva-product-title a:hover {
  color: #b5d1a7;
}

/* DEVA Product Excerpt */
.deva-product-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* DEVA Single Star Rating */
.deva-single-star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.deva-single-star-rating .star-icon {
  color: #ffa500;
  font-size: 14px;
}

.deva-single-star-rating .rating-score {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.deva-single-star-rating .rating-count {
  font-size: 12px;
  color: #666;
}

/* DEVA Product Actions */
.deva-product-actions {
  margin-top: auto;
  padding-top: 10px;
}

.deva-add-to-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: none;
  min-height: 44px;
  box-sizing: border-box;
  background: #48733d;
  color: #fff;
}

.deva-add-to-cart-btn:hover {
  background: #3d6234;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(72, 115, 61, 0.3);
}

.deva-add-to-cart-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.deva-out-of-stock {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  display: block;
}

/* Focus states for accessibility */
.deva-add-to-cart-btn:focus {
  outline: 2px solid #48733d;
  outline-offset: 2px;
}

/* Loading state for add to cart */
.deva-add-to-cart-btn.loading:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

/* WooCommerce added_to_cart link styling to match Buy Now button */
.added_to_cart.wc-forward {
  width: 100%;
  display: none !important; /* Hidden by default, will be shown via JavaScript */
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: 2px solid #48733d;
  min-height: 44px;
  box-sizing: border-box;
  background: #fff;
  color: #48733d;
  margin-top: 0;
}

.added_to_cart.wc-forward:hover {
  background: #48733d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(72, 115, 61, 0.3);
}

/* When showing the added_to_cart link, hide the original button */
.deva-product-actions.cart-added .deva-add-to-cart-btn {
  display: none !important;
}

.deva-product-actions.cart-added .added_to_cart.wc-forward {
  display: flex !important;
}

/* Focus states for accessibility */
.added_to_cart.wc-forward:focus {
  outline: 2px solid #48733d;
  outline-offset: 2px;
}

/* View Cart button (replacement for Buy Now after adding to cart) */
.deva-view-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: 2px solid #48733d;
  min-height: 44px;
  box-sizing: border-box;
  background: #fff;
  color: #48733d;
}

.deva-view-cart-btn:hover {
  background: #48733d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(72, 115, 61, 0.3);
  text-decoration: none;
}

.deva-view-cart-btn:focus {
  outline: 2px solid #48733d;
  outline-offset: 2px;
}

/* Search Product Specific Styles */
.deva-search-product .deva-product-content {
  gap: 8px;
}

.deva-search_product .deva-product-title {
  font-size: 15px;
}

.deva-search_product .deva-product-excerpt {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile Responsiveness for Product Cards */
@media (max-width: 480px) {
  .deva-product-image,
  .deva-product-placeholder {
    height: 180px;
  }

  .deva-product-card {
    padding: 12px;
  }

  .deva-product-title {
    font-size: 14px;
  }

  .deva-add-to-cart-btn {
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
    width: 100%;
  }
}

/* Tablet adjustments */
@media (max-width: 768px) and (min-width: 481px) {
  .deva-add-to-cart-btn {
    font-size: 13px;
    padding: 11px 14px;
  }
}

/* =============================================================================
   DEVA PRODUCT CATEGORY ENHANCEMENTS 
   ============================================================================= */

/* Enhanced Category Header */
.deva-product-category-section .search-header-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.deva-product-category-section .search-header-bar .current-category {
  background: transparent;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 0 0 auto;
  margin: 0;
  line-height: 1.4;
}

.deva-product-category-section .search-header-bar .product-count {
  color: #666;
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
  min-width: 150px;
}

.deva-product-category-section .search-header-bar .sort-dropdown {
  flex: 0 0 auto;
  min-width: 200px;
}

/* Enhanced Category Form */
.deva-product-category-section .product-category-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

/* Search and Filter Bar Layout */
.deva-product-category-section .search-filter-bar {
  margin-bottom: 30px;
}

.deva-product-category-section .product-category-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.deva-product-category-section .search-input-wrapper {
  flex: 2;
  min-width: 250px;
}

.deva-product-category-section .filter-dropdown-wrapper {
  flex: 1;
  min-width: 200px;
}

.deva-product-category-section .search-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .deva-product-category-section .product-category-form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .deva-product-category-section .search-input-wrapper,
  .deva-product-category-section .filter-dropdown-wrapper,
  .deva-product-category-section .search-button {
    flex: none;
    width: 100%;
  }
}

/* Enhanced Product Cards in Category */
.deva-product-category-section .deva-product-card {
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
}

.deva-product-category-section .deva-product-card:hover {
  border-color: #48733d;
  box-shadow: 0 8px 25px rgba(72, 115, 61, 0.15);
  transform: translateY(-3px);
}

/* Pill-shaped Filter and Sort Elements */
.deva-product-category-section .search-input-wrapper input[type="text"] {
  border: 2px solid #e9ecef;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 8px;
}

.deva-product-category-section .search-input-wrapper input[type="text"]:focus {
  border-color: #48733d;
  box-shadow: 0 0 0 3px rgba(72, 115, 61, 0.1);
}

.deva-product-category-section .filter-dropdown-wrapper select {
  border: 2px solid #e9ecef;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
  background: #fff;
}

.deva-product-category-section .filter-dropdown-wrapper select:focus {
  border-color: #48733d;
  box-shadow: 0 0 0 3px rgba(72, 115, 61, 0.1);
  outline: none;
}

.deva-product-category-section .sort-dropdown select {
  border: 2px solid #e9ecef;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
  background: #fff;
}

.deva-product-category-section .sort-dropdown select:focus {
  border-color: #48733d;
  box-shadow: 0 0 0 3px rgba(72, 115, 61, 0.1);
  outline: none;
}

.deva-product-category-section .search-button {
  background: linear-gradient(135deg, #48733d 0%, #3d6234 100%);
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.3);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.deva-product-category-section .search-button:hover {
  background: linear-gradient(135deg, #3d6234 0%, #2f4d29 100%);
  box-shadow: 0 4px 12px rgba(72, 115, 61, 0.4);
}

/* Enhanced No Products Found */
.deva-product-category-section .no-products-found {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
}

.deva-product-category-section .clear-filters {
  background: linear-gradient(135deg, #48733d 0%, #3d6234 100%);
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.3);
}

/* =============================================================================
   DEVA PAGINATION STYLES
   ============================================================================= */

/* DEVA Pagination */
.deva-pagination {
  text-align: center;
  margin-top: 50px;
}

.deva-pagination ul {
  display: inline-flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}

.deva-pagination ul li {
  list-style: none;
}

.deva-pagination ul li a,
.deva-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #48733d;
  border-radius: 8px;
  color: #48733d;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.deva-pagination ul li a:hover,
.deva-pagination ul li span.current {
  background: #48733d;
  color: white;
}

.deva-pagination ul li.prev a,
.deva-pagination ul li.next a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  position: relative;
}

/* Remove pseudo-element arrows since we're using HTML arrows now */

/* Disabled pagination buttons */
.deva-pagination ul li span.disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #ccc;
  text-decoration: none;
  background: #f5f5f5;
  cursor: not-allowed;
}

/* WooCommerce Pagination (for compatibility) */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 50px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #48733d;
  border-radius: 6px;
  color: #48733d;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #48733d;
  color: white;
}

.woocommerce nav.woocommerce-pagination ul li.prev a,
.woocommerce nav.woocommerce-pagination ul li.next a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  position: relative;
}

/* Remove pseudo-element arrows since we're using HTML arrows now */

/* DEVA Product Actions - Button Row Styling */
.deva-product-category-section .deva-button-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.deva-product-category-section .deva-add-to-cart-btn,
.deva-product-category-section .deva-buy-now-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  min-height: 44px;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.deva-product-category-section .deva-add-to-cart-btn {
  background: linear-gradient(135deg, #48733d 0%, #3d6234 100%);
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.2);
  border-color: transparent;
  color: #fff;
}

.deva-product-category-section .deva-add-to-cart-btn:hover {
  background: linear-gradient(135deg, #3d6234 0%, #2f4d29 100%);
  box-shadow: 0 4px 12px rgba(72, 115, 61, 0.3);
  border-color: transparent;
  transform: translateY(-1px);
}

.deva-product-category-section .deva-buy-now-btn {
  background: #fff;
  color: #48733d;
  border: 2px solid #48733d;
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.1);
}

.deva-product-category-section .deva-buy-now-btn:hover {
  background: #f8f9fa;
  color: #3d6234;
  border-color: #3d6234;
  box-shadow: 0 4px 12px rgba(72, 115, 61, 0.2);
  transform: translateY(-1px);
}

/* Mobile responsiveness for button row */
@media (max-width: 480px) {
  .deva-product-category-section .deva-button-row {
    flex-direction: column;
    gap: 8px;
  }

  .deva-product-category-section .deva-add-to-cart-btn,
  .deva-product-category-section .deva-buy-now-btn {
    font-size: 12px;
    padding: 10px 12px;
    letter-spacing: 0.3px;
  }
}

/* Product Category Section - View Cart button styling */
.deva-product-category-section .deva-view-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  min-height: 44px;
  box-sizing: border-box;
  background: #fff;
  color: #48733d;
  border: 2px solid #48733d;
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.1);
}

.deva-product-category-section .deva-view-cart-btn:hover {
  background: #f8f9fa;
  color: #3d6234;
  border-color: #3d6234;
  box-shadow: 0 4px 12px rgba(72, 115, 61, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Product Category Section - WooCommerce added_to_cart link styling */
.deva-product-category-section .added_to_cart.wc-forward {
  flex: 1;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  min-height: 44px;
  box-sizing: border-box;
  background: #fff;
  color: #48733d;
  border: 2px solid #48733d;
  box-shadow: 0 2px 8px rgba(72, 115, 61, 0.1);
  margin-top: 0;
}

.deva-product-category-section .added_to_cart.wc-forward:hover {
  background: #f8f9fa;
  color: #3d6234;
  border-color: #3d6234;
  box-shadow: 0 4px 12px rgba(72, 115, 61, 0.2);
  transform: translateY(-1px);
}

/* Mobile responsiveness for View Cart button */
@media (max-width: 480px) {
  .deva-product-category-section .deva-view-cart-btn {
    font-size: 12px;
    padding: 10px 12px;
    letter-spacing: 0.3px;
  }
}

/* Wishlist Display Styles */
.deva-wishlist-display {
    padding: 20px 0;
}

.deva-wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #b5d1a7;
}

.deva-wishlist-header h2 {
    margin: 0;
    color: #48733d;
    font-size: 2rem;
}

.wishlist-count-display {
    color: #666;
    font-size: 1rem;
}

.deva-wishlist-count {
    font-weight: 600;
    color: #48733d;
}

.deva-wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #b5d1a7;
}

.deva-wishlist-empty p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.continue-shopping-btn {
    display: inline-block;
    background: #48733d;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #3d6234;
    color: white;
}

/* Wishlist specific product grid */
.deva-wishlist-display .deva-products-grid {
    margin-top: 20px;
}

/* Loading state for wishlist */
.deva-wishlist-products.loading {
    opacity: 0.6;
    pointer-events: none;
}

.deva-wishlist-products.loading::before {
    content: 'Loading wishlist...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

@media (max-width: 768px) {
    .deva-wishlist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .deva-wishlist-header h2 {
        font-size: 1.5rem;
    }
}
