
/* =========================================================
   SipSab — Modern Craft Beer Theme
   Author: AI : G-SEO
   Last build: 2025-08-28T04:18:58
   Updated: 2025-01-27 - Hero Text Update v2
   ========================================================= */

/* Import Noto Sans Thai Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
  --ink:#0f172a;
  --ink-2:#334155;
  --bg:#0b0f1a;
  --card:#0f1322cc;
  --glass:rgba(255,255,255,.06);
  --bd:#23304a;
  --accent:#f59e0b;
  --accent-2:#fbbf24;
  --success:#10b981;
  --danger:#ef4444;
  --white:#fff;
  --radius:18px;
  --radius-lg:26px;
  --shadow-sm:0 6px 20px rgba(0,0,0,.25);
  --shadow-md:0 16px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Noto Sans Thai', Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--white);
  background:var(--bg);
  overflow-x:hidden;
  font-weight: 400;
  line-height: 1.6;
}

/* ===== Hero Image Styles ===== */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.05);
}

/* ===== Hero Image Responsive ===== */
@media (max-width: 768px) {
  .hero-image-container {
    max-width: 300px;
    margin: 0 auto 2rem auto;
  }
  
  .hero-main-image {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    max-width: 250px;
  }
}

/* ===== 3D Beer Background (Canvas + layers) ===== */
.beer-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(1200px 400px at 50% -120px, #ffffff 0%, #ffe7a7 28%, #f7b733 40%, rgba(15,19,34,0) 60%),
    radial-gradient(800px 220px at 50% -80px, #fff 0%, rgba(255,255,255,.7) 30%, rgba(255,255,255,0) 60%),
    radial-gradient(1200px 1200px at 80% 120%, rgba(255, 145, 0, .20), rgba(255,145,0,0) 60%),
    radial-gradient(900px 900px at 15% 85%, rgba(255,220,90,.18), rgba(255,220,90,0) 60%),
    linear-gradient(180deg, #121828 0%, #101523 50%, #0b0f1a 100%);
}
#bg-bubbles{
  position:fixed;
  inset:0;
  z-index:-1;
  filter: url('#blur') blur(0.3px);
  opacity:.75;
  pointer-events:none;
}

/* ===== Layout ===== */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:24px 20px 48px;
}
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(8px);
  background:linear-gradient(180deg, rgba(10,15,26,.9) 0%, rgba(10,15,26,.6) 100%);
  border-bottom:1px solid var(--bd);
}
.nav{
  display:flex;
  align-items:center;
  gap:16px;
  padding:12px 20px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--white);
}
.brand .logo{ width:34px; height:34px; display:grid; place-items:center; background:linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius:10px; box-shadow:var(--shadow-sm) }
.brand strong{ 
  font-size:22px; 
  letter-spacing:.1px; 
  font-family: 'Noto Sans Thai', sans-serif; 
  font-weight: 700;
}
/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 4px;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.search-container:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 8px 12px;
  font-size: 14px;
  font-family: 'Noto Sans Thai', sans-serif;
  width: 200px;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #94a3b8;
  font-family: 'Noto Sans Thai', sans-serif;
}

.search-btn {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}

.search-btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.search-btn svg {
  width: 16px;
  height: 16px;
}

/* Mobile Search */
@media (max-width: 900px) {
  .search-container {
    margin-right: 8px;
    margin-bottom: 8px;
  }
  
  .search-input {
    width: 150px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .search-container {
    order: 3;
    width: 100%;
    margin: 8px 0;
  }
  
  .search-input {
    width: 100%;
  }
}

.spacer{ flex:1 }
.navlinks{
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a{
  color:#e5e7eb; 
  text-decoration:none; 
  font-weight:600;
  padding:12px 16px; 
  border-radius:10px;
  border:1px solid transparent;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}
.nav a:hover{ background:var(--glass); border-color:var(--bd) }
.nav a.active{ background:linear-gradient(135deg, #1c2439, #121a2f); border-color:#2b3b5f; color:#fff }

/* Mobile nav */
.menu-btn{ display:none; font-family: 'Noto Sans Thai', sans-serif; }
@media (max-width:900px){
  .menu-btn{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border:1px solid var(--bd); border-radius:10px; background:var(--card) }
  .navlinks{ display:none; position:absolute; right:12px; top:60px; background:var(--card); border:1px solid var(--bd); border-radius:12px; padding:8px; flex-direction:column; min-width:220px }
  .navlinks.show{ display:flex }
  .navlinks a{ padding:10px 12px }
}

/* ===== Hero ===== */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
  padding:48px 20px 20px;
}
.hero h1{
  font-size: 32px;
  line-height:1.15;
  margin:0 0 20px;
  letter-spacing:.1px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 700;
}
.hero p{ 
  color:#cbd5e1; 
  font-size: clamp(17px, 2.2vw, 19px); 
  margin:0 0 24px; 
  font-family: 'Noto Sans Thai', sans-serif; 
  line-height: 1.7;
  font-weight: 400;
}

.hero-description {
  margin: 0 0 28px 0;
}

.hero-description p {
  color: #e5e7eb;
  font-size: clamp(18px, 2.4vw, 21px);
  margin: 0 0 12px 0;
  font-family: 'Noto Sans Thai', sans-serif;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-description p:last-child {
  margin-bottom: 0;
  color: #fbbf24 !important;
  font-weight: 600;
}

/* Force browser refresh */
.hero-description {
  display: block !important;
}

/* Specific styles for new hero text */
.hero-desc-1 {
  color: #e5e7eb !important;
  font-size: clamp(18px, 2.4vw, 21px) !important;
  margin: 0 0 12px 0 !important;
  font-family: 'Noto Sans Thai', sans-serif !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  display: block !important;
}

.hero-desc-2 {
  color: #fbbf24 !important;
  font-size: clamp(18px, 2.4vw, 21px) !important;
  margin: 0 !important;
  font-family: 'Noto Sans Thai', sans-serif !important;
  line-height: 1.6 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  display: block !important;
}

/* Express delivery badge */
.hot-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  z-index: 2;
}

/* Package type badge */
.package-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.package-badge.bottle {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.package-badge.can {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Beer description for 3D cans */
.beer-description {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 3;
  display: block !important;
  visibility: visible !important;
}

.beer-description p {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Noto Sans Thai', sans-serif;
  line-height: 1.4;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments for beer descriptions */
@media (max-width: 768px) {
  .beer-description {
    bottom: -35px;
  }
  
  .beer-description p {
    font-size: 12px;
    padding: 6px 10px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .beer-description {
    bottom: -30px;
  }
  
  .beer-description p {
    font-size: 11px;
    padding: 4px 8px;
    max-width: 120px;
  }
}

/* Featured Beers Section */
.featured-beers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.beer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  transition: transform 0.3s ease;
}

.beer-item:hover {
  transform: translateY(-8px);
}

.beer-image-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.beer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.beer-image:hover {
  transform: scale(1.05);
}

.beer-info {
  text-align: center;
  max-width: 250px;
}

.beer-name {
  color: #fbbf24;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  font-family: 'Noto Sans Thai', sans-serif;
  letter-spacing: 0.5px;
}

.beer-description {
  color: #e5e7eb;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  font-family: 'Noto Sans Thai', sans-serif;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .featured-beers {
    gap: 30px;
    padding: 30px 15px;
  }
  
  .beer-image-container {
    width: 250px;
    height: 250px;
  }
  
  .beer-name {
    font-size: 18px;
  }
  
  .beer-description {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .featured-beers {
    gap: 25px;
    padding: 25px 10px;
  }
  
  .beer-image-container {
    width: 220px;
    height: 220px;
  }
  
  .beer-name {
    font-size: 16px;
  }
  
  .beer-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .featured-beers {
    flex-direction: column;
    gap: 30px;
    padding: 20px 10px;
  }
  
  .beer-item {
    max-width: 100%;
  }
  
  .beer-image-container {
    width: 200px;
    height: 200px;
  }
  
  .beer-name {
    font-size: 16px;
  }
  
  .beer-description {
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .featured-beers {
    gap: 25px;
    padding: 15px 5px;
  }
  
  .beer-image-container {
    width: 180px;
    height: 180px;
  }
  
  .beer-name {
    font-size: 14px;
  }
  
  .beer-description {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* SEO Content Sections */
.craft-beer-info {
  margin: 2rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #fbbf24;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

.info-card p {
  color: #e5e7eb;
  line-height: 1.6;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

.service-areas {
  margin: 2rem 0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.area-item {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: transform 0.3s ease;
}

.area-item:hover {
  transform: translateY(-3px);
}

.area-item h3 {
  color: #10b981;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

.area-item p {
  color: #e5e7eb;
  font-size: 0.9rem;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* Recommendation Section Styles */
.recommendation-content {
  margin: 2rem 0;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.recommendation-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: transform 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-3px);
}

.recommendation-card h3 {
  color: #f59e0b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

.recommendation-card p {
  color: #e5e7eb;
  font-size: 0.9rem;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
  line-height: 1.6;
}

.price-info {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
  margin: 2rem 0;
}

.price-info p {
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  color: #fbbf24;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

.faq-icon {
  color: #10b981;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #e5e7eb;
  line-height: 1.6;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* Responsive Design for SEO Sections */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .area-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .area-item {
    padding: 1rem;
  }
  
  .recommendation-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .recommendation-card {
    padding: 1rem;
  }
  
  .price-info {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
  }
}
.cta{ display:flex; gap:12px; flex-wrap:wrap }
.btn{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#111; font-weight:700; letter-spacing:.2px;
  padding:14px 18px; border:none; border-radius:12px; cursor:pointer;
  box-shadow: var(--shadow-sm);
  text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 15px;
}
.btn.secondary{
  background:transparent; color:#fff;
  border:1px solid #334155; backdrop-filter: blur(6px);
}
.btn-small{
  padding:10px 14px;
  font-size:14px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}

.btn-danger{
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover{
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-danger:active{
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Product Actions Styling */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.product-actions .btn {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-actions .btn-small {
  padding: 8px 12px;
  font-size: 13px;
  min-height: 36px;
}

/* Ensure delete button is visible */
.product-actions .btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Force visibility for all buttons in product actions */
.product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Specific styling for grab page product cards */
.grab-card .product-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 12px !important;
  width: 100% !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
}

.grab-card .product-actions .btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
}

.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Debug: Make sure all elements are visible */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Force visibility for all buttons */
.grab-card .product-actions .btn,
.grab-card .product-actions .btn-small,
.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Specific override for delete button */
.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Debug: Force all elements to be visible */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

/* Force visibility for all elements in grab page */
.grab-card .product-actions * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.grab-card .product-actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.grab-card .product-actions .btn-danger {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: 8px !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Hover effect for delete button */
.grab-card .product-actions .btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Active effect for delete button */
.grab-card .product-actions .btn-danger:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}
.tag{
  display:inline-block; 
  padding:12px 20px; 
  background: rgba(120, 113, 108, 0.2);
  border:1px solid rgba(120, 113, 108, 0.4); 
  border-radius:20px; 
  color:#f5f5f4; 
  font-size:14px; 
  letter-spacing:.5px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-visual{
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,190,60,.18), rgba(255,190,60,0) 50%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border:1px solid var(--bd);
  padding:18px; position:relative; overflow:hidden;
  box-shadow: var(--shadow-md);
}

/* ===== Hero 3D Beer Can ===== */
.hero-beer-can-3d{
  width:100%;
  aspect-ratio: 3 / 5;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.can-3d-body{
  width:100%;
  height:100%;
  position:relative;
  transform-style: preserve-3d;
  animation: hero-float 8s ease-in-out infinite;
  transform: rotateY(-15deg) rotateX(5deg);
}

@keyframes hero-float {
  0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0px); }
  50% { transform: rotateY(-10deg) rotateX(8deg) translateY(-15px); }
}

.can-3d-top{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  width:85%;
  height:20px;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-radius:42.5px;
  box-shadow: 
    0 6px 12px rgba(0,0,0,.4),
    inset 0 2px 4px rgba(255,255,255,.8),
    inset 0 -2px 4px rgba(0,0,0,.2);
  z-index:3;
}

.can-3d-pull-tab{
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:10px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius:30px;
  box-shadow: 
    inset 0 1px 2px rgba(0,0,0,.3),
    0 2px 4px rgba(0,0,0,.2);
  cursor:pointer;
  transition: all 0.3s ease;
}

.can-3d-pull-tab:hover{
  transform: translateX(-50%) scale(1.1);
  box-shadow: 
    inset 0 1px 2px rgba(0,0,0,.3),
    0 4px 8px rgba(0,0,0,.3);
}

.can-3d-label{
  position:absolute;
  inset:10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius:40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#111;
  font-weight:900;
  text-align:center;
  box-shadow: 
    inset 0 3px 0 rgba(255,255,255,.6),
    0 12px 24px rgba(0,0,0,.4),
    0 0 30px rgba(245,158,11,.3);
  overflow:hidden;
  border:2px solid rgba(255,255,255,.3);
}

.can-3d-label:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: hero-shine 4s ease-in-out infinite;
}

@keyframes hero-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.can-3d-brand{
  font-size:clamp(16px, 3vw, 24px);
  letter-spacing:2px;
  margin-bottom:8px;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  z-index:1;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 800;
}

.can-3d-type{
  font-size:clamp(10px, 1.5vw, 14px);
  letter-spacing:1px;
  margin-bottom:6px;
  opacity:0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  z-index:1;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}

.can-3d-details{
  font-size:clamp(8px, 1vw, 10px);
  opacity:0.8;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  z-index:1;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 500;
}

.can-3d-bottom{
  position:absolute;
  bottom:-12px;
  left:50%;
  transform:translateX(-50%);
  width:85%;
  height:20px;
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  border-radius:42.5px;
  box-shadow: 
    0 -6px 12px rgba(0,0,0,.4),
    inset 0 -2px 4px rgba(0,0,0,.3),
    inset 0 2px 4px rgba(255,255,255,.2);
  z-index:3;
}

.can-3d-highlight{
  position:absolute;
  top:15%;
  left:15%;
  width:30%;
  height:40%;
  background: linear-gradient(45deg, 
    rgba(255,255,255,.4) 0%, 
    rgba(255,255,255,.1) 50%, 
    transparent 100%);
  border-radius:50%;
  transform: rotate(-15deg);
  pointer-events:none;
}

.can-3d-reflection{
  position:absolute;
  top:25%;
  right:20%;
  width:25%;
  height:30%;
  background: linear-gradient(45deg, 
    rgba(255,255,255,.3) 0%, 
    rgba(255,255,255,.05) 50%, 
    transparent 100%);
  border-radius:50%;
  transform: rotate(25deg);
  pointer-events:none;
}

.can-3d-shadow{
  position:absolute;
  bottom:-40px;
  left:50%;
  transform:translateX(-50%);
  width:80%;
  height:30px;
  background: radial-gradient(ellipse, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 70%);
  border-radius:50%;
  filter: blur(3px);
  z-index:1;
}

.can-3d-glow{
  position:absolute;
  inset:-20px;
  background: radial-gradient(circle, rgba(245,158,11,.2) 0%, rgba(245,158,11,0) 70%);
  border-radius:50%;
  filter: blur(10px);
  animation: hero-glow 6s ease-in-out infinite;
  pointer-events:none;
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Enhanced hover effects for hero can */
.hero-beer-can-3d:hover .can-3d-body{
  animation-play-state: paused;
  transform: rotateY(-5deg) rotateX(10deg) scale(1.05);
}

.hero-beer-can-3d:hover .can-3d-pull-tab{
  transform: translateX(-50%) scale(1.2);
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

.hero-beer-can-3d:hover .can-3d-glow{
  opacity: 0.8;
  transform: scale(1.2);
}

/* ===== New Grid Layouts ===== */
.grid-3{
  display:grid; 
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.grid-6{
  display:grid; 
  grid-template-columns: repeat(6, 1fr);
  gap:20px;
}

/* ===== Product Cards ===== */
.featured-card, .product-card{
  background:var(--card);
  border:1px solid var(--bd);
  border-radius:var(--radius);
  padding:20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover, .product-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-image{
  width:100%;
  height:180px;
  margin-bottom:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(255,190,60,.1), rgba(255,190,60,0) 50%);
}

/* ===== Enhanced Beer Can Placeholders ===== */
.beer-can{
  width:120px;
  height:180px;
  border-radius:60px;
  position:relative;
  background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 40%, #a1a1aa 60%, #e5e7eb 100%);
  border:3px solid rgba(255,255,255,.4);
  box-shadow: 
    inset 0 0 0 3px rgba(255,255,255,.3), 
    inset 0 -12px 24px rgba(0,0,0,.3), 
    0 30px 60px rgba(0,0,0,.4),
    0 0 20px rgba(255,190,60,.2);
  transition: all 0.3s ease;
}
.beer-can:hover{
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    inset 0 0 0 3px rgba(255,255,255,.5), 
    inset 0 -12px 24px rgba(0,0,0,.3), 
    0 40px 80px rgba(0,0,0,.5),
    0 0 30px rgba(255,190,60,.4);
}
.beer-can:before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:48px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-weight:900;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.6), 0 8px 16px rgba(0,0,0,.2);
  font-family: 'Noto Sans Thai', sans-serif;
}
.beer-can:after{
  content:"";
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:40px;
  height:8px;
  background: rgba(255,255,255,.8);
  border-radius:4px;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.hazy-ipa:before{ content:"IPA"; background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.bangkok-lager:before{ content:"LAGER"; background: linear-gradient(135deg, #10b981, #34d399); }
.tropical-sour:before{ content:"SOUR"; background: linear-gradient(135deg, #ef4444, #f87171); }
.pilsner:before{ content:"PILSNER"; background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.milk-stout:before{ content:"STOUT"; background: linear-gradient(135deg, #7c2d12, #a16207); }
.wheat-ale:before{ content:"WHEAT"; background: linear-gradient(135deg, #fbbf24, #fcd34d); }
.zero-ipa:before{ content:"ZERO"; background: linear-gradient(135deg, #6b7280, #9ca3af); }

/* New popular products beer can styles */
.wila-weizen:before{ content:"WILA"; background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.whale-pale-ale:before{ content:"WHALE"; background: linear-gradient(135deg, #06b6d4, #0891b2); }
.m32-passion-fruit:before{ content:"M32"; background: linear-gradient(135deg, #f97316, #ea580c); }
.crispy-boy-helles:before{ content:"CRISPY"; background: linear-gradient(135deg, #eab308, #ca8a04); }
.call-me-papa-hazy:before{ content:"PAPA"; background: linear-gradient(135deg, #dc2626, #b91c1c); }
.khun-phaen-pale-ale:before{ content:"KHUN"; background: linear-gradient(135deg, #7c2d12, #92400e); }

/* ===== Enhanced Image Sections ===== */
.hero-image, .beer-tasting, .brewery-scene{
  height:400px;
  border-radius:var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,190,60,.15), rgba(255,190,60,0) 50%),
              linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 50%);
  border:2px solid var(--bd);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.hero-image:hover, .beer-tasting:hover, .brewery-scene:hover{
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
  border-color: var(--accent);
}

/* ===== 3D Beer Cans Section ===== */
.beer-cans-3d{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:center;
  position:relative;
  perspective: 1000px;
}

.beer-can-3d{
  position:relative;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.beer-can-3d:nth-child(1) { animation-delay: 0s; }
.beer-can-3d:nth-child(2) { animation-delay: 2s; }
.beer-can-3d:nth-child(3) { animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(10deg); }
}

.can-body{
  width:80px;
  height:120px;
  position:relative;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.can-body:hover{
  transform: scale(1.1) rotateY(15deg);
}

.can-top{
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%);
  width:70px;
  height:16px;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-radius:35px;
  box-shadow: 
    0 4px 8px rgba(0,0,0,.3),
    inset 0 2px 4px rgba(255,255,255,.6);
  z-index:2;
}

.can-top:before{
  content:"";
  position:absolute;
  top:4px;
  left:50%;
  transform:translateX(-50%);
  width:50px;
  height:8px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius:25px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.can-label{
  position:absolute;
  inset:8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius:32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
  text-align:center;
  box-shadow: 
    inset 0 2px 0 rgba(255,255,255,.4),
    0 8px 16px rgba(0,0,0,.3);
  overflow:hidden;
}

.can-label:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.brand-name{
  font-size:10px;
  letter-spacing:1px;
  margin-bottom:4px;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
  font-family: 'Noto Sans Thai', sans-serif;
}

.beer-type{
  font-size:8px;
  opacity:0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
  font-family: 'Noto Sans Thai', sans-serif;
}

.can-bottom{
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:70px;
  height:16px;
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  border-radius:35px;
  box-shadow: 
    0 -4px 8px rgba(0,0,0,.3),
    inset 0 -2px 4px rgba(0,0,0,.2);
  z-index:2;
}

.can-shadow{
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:20px;
  background: radial-gradient(ellipse, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 70%);
  border-radius:50%;
  filter: blur(2px);
}

/* Individual can styles */
.can-3d-1 .can-label{
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.can-3d-2 .can-label{
  background: linear-gradient(135deg, #10b981, #059669);
}

.can-3d-3 .can-label{
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Enhanced hover effects */
.beer-can-3d:hover .can-body{
  transform: scale(1.15) rotateY(20deg) rotateX(5deg);
}

.beer-can-3d:hover .can-shadow{
  transform: translateX(-50%) scale(1.2);
  opacity: 0.6;
}

/* Add some depth with pseudo-elements */
.can-body:after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: linear-gradient(90deg, 
    rgba(255,255,255,.1) 0%, 
    transparent 20%, 
    transparent 80%, 
    rgba(0,0,0,.1) 100%);
  border-radius:32px;
  pointer-events:none;
}

/* ===== About Section ===== */
.about-content{
  text-align:center;
  max-width:800px;
  margin:0 auto;
}
.about-content h2{
  margin-bottom:20px;
  font-size:clamp(24px, 4vw, 32px);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 700;
  border-left: 6px solid #FBBF24;
  padding-left: 10px;
  text-align: left;
}
.about-content p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.6;
  margin-bottom:40px;
  font-family: 'Noto Sans Thai', sans-serif;
}
.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  margin-top:40px;
}
.feature{
  text-align:center;
  padding:20px;
}
.feature-icon{
  font-size:48px;
  margin-bottom:16px;
}
.feature h3{
  margin-bottom:12px;
  color:var(--accent-2);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}
.feature p{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.5;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* ===== Craft Beer Info ===== */
.craft-beer-info{
  text-align:center;
}
.craft-beer-info h2{
  margin-bottom:40px;
  font-size:clamp(24px, 4vw, 32px);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 700;
  border-left: 6px solid #FBBF24;
  padding-left: 10px;
  text-align: left;
}
.info-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}
.info-card{
  background:var(--card);
  border:1px solid var(--bd);
  border-radius:var(--radius);
  padding:24px;
  text-align:left;
}
.info-card h3{
  color:var(--accent-2);
  margin-bottom:16px;
  font-size:18px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}
.info-card p{
  color:#cbd5e1;
  line-height:1.6;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* ===== Reviews ===== */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.review-card{
  background:var(--card);
  border:1px solid var(--bd);
  border-radius:var(--radius);
  padding:24px;
  text-align:center;
  transition: all 0.3s ease;
}
.review-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.review-avatar{
  display:flex;
  justify-content:center;
  margin-bottom:16px;
}
.avatar-circle{
  width:60px;
  height:60px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-weight:900;
  font-size:20px;
  box-shadow: 
    0 8px 20px rgba(0,0,0,.3),
    0 0 20px rgba(255,190,60,.3);
  transition: all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.avatar-circle:hover{
  transform: scale(1.1);
  box-shadow: 
    0 12px 30px rgba(0,0,0,.4),
    0 0 30px rgba(255,190,60,.5);
}
.avatar-circle:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.avatar-circle:hover:before{
  transform: translateX(100%);
}

/* Avatar specific styles */
.avatar-may:after{
  content:"👩";
  font-size:28px;
}
.avatar-aek:after{
  content:"👨";
  font-size:28px;
}
.avatar-win:after{
  content:"👦";
  font-size:28px;
}

.stars{
  color:var(--accent-2);
  font-size:20px;
  margin-bottom:16px;
}
.review-card h3{
  margin-bottom:12px;
  color:var(--accent-2);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}
.review-card p{
  color:#cbd5e1;
  line-height:1.6;
  font-style:italic;
  font-family: 'Noto Sans Thai', sans-serif;
}

.avatar-img{
  width:64px;
  height:64px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 22px rgba(0,0,0,.35), 0 0 24px rgba(255,190,60,.25);
  object-fit:cover;
}

/* Review hero and filters */
.review-hero{
  padding-top:42px;
}
.review-hero__head{
  display:flex; align-items:flex-end; gap:24px; justify-content:space-between; flex-wrap:wrap;
  background: linear-gradient(160deg, rgba(255,190,60,.12), rgba(255,190,60,0) 50%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border:1px solid var(--bd);
  border-radius:var(--radius-lg);
  padding:22px 24px;
  box-shadow: var(--shadow-sm);
}
.review-title{ 
  margin:0 0 6px; 
  font-size: clamp(28px, 5.5vw, 42px);
  font-family: 'Noto Sans Thai', sans-serif; 
  font-weight: 800; 
}
.review-subtitle{ color:#cbd5e1; margin:0; max-width:720px; }
.review-stats{ display:flex; gap:16px; }
.stat{ background: var(--glass); border:1px solid var(--bd); border-radius:14px; padding:10px 14px; text-align:center; min-width:110px }
.stat-value{ font-size:22px; font-weight:800; color:var(--accent-2) }
.stat-label{ font-size:12px; color:#cbd5e1 }

.review-filters{ display:flex; gap:8px; align-items:center; margin-top:16px; flex-wrap:wrap }
.chip{ 
  background:rgba(255,255,255,.04); color:#e5e7eb; border:1px solid #334155; 
  padding:8px 12px; border-radius:999px; cursor:pointer; font-weight:600; 
  transition:all .2s; font-family: 'Noto Sans Thai', sans-serif; white-space:nowrap 
}
.chip:hover{ background:rgba(255,255,255,.06) }
.chip.active{ background:linear-gradient(135deg, var(--accent), var(--accent-2)); color:#111; border-color:transparent }

.review-meta{ display:flex; gap:10px; align-items:center; justify-content:center; margin-top:14px; color:#94a3b8 }
.review-meta .dot{ width:6px; height:6px; border-radius:50%; background:#334155; display:inline-block }

/* ===== Promotions ===== */
.promo-hero__wrap{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch;
  background: linear-gradient(160deg, rgba(255,190,60,.12), rgba(255,190,60,0) 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border:1px solid var(--bd);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow: var(--shadow-sm);
}
.promo-title{ margin:0 0 8px; font-size: clamp(28px, 5.5vw, 42px); font-family: 'Noto Sans Thai', sans-serif; font-weight:800; line-height:1.15 }
.promo-subtitle{ color:#cbd5e1; margin:0 0 14px; line-height:1.6; overflow-wrap:anywhere }
.coupon{ display:flex; gap:10px; align-items:center; background:var(--glass); border:1px dashed #475569; padding:10px 12px; border-radius:12px; width:max-content; flex-wrap:wrap }
.coupon-code{ background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#111; font-weight:900; padding:6px 10px; border-radius:8px }
.coupon-desc{ color:#e5e7eb }
.countdown{ display:flex; gap:10px; margin-top:12px }
.cd{ background:#0a1223; border:1px solid var(--bd); border-radius:12px; padding:8px 10px; text-align:center; min-width:74px }
.cd .num{ display:block; font-size:22px; font-weight:800; color:var(--accent-2) }
.cd .lbl{ display:block; font-size:11px; color:#94a3b8 }
.promo-filters{ display:flex; gap:8px; align-items:center; margin-top:14px; flex-wrap:wrap }

.promo-hero__right{ display:flex; align-items:center; justify-content:center }
.promo-banner{ width:100%; aspect-ratio: 16 / 9; border-radius:16px; border:1px solid var(--bd); background: linear-gradient(145deg, rgba(255,190,60,.1), rgba(255,190,60,0)); display:grid; place-items:center; color:#e5e7eb; opacity:.9; box-shadow: var(--shadow-md); text-align:center; padding:12px }
.placeholder span{ opacity:.85; font-size:14px }

.promo-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; align-items:stretch }
.promo-card{ background:var(--card); border:1px solid var(--bd); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; box-shadow: var(--shadow-sm) }
.promo-card--xl{ grid-column: span 2 }
.promo-media{ width:100%; aspect-ratio: 1 / 1; background: linear-gradient(160deg, rgba(255,190,60,.1), rgba(255,190,60,0)); border-bottom:1px solid var(--bd); display:grid; place-items:center }
.promo-media img{ width:100%; height:100%; object-fit:cover }
.promo-info{ padding:16px; padding-top:48px; position:relative }
.promo-info h3{ margin:0 0 8px; font-family:'Kanit', sans-serif; font-weight:700; line-height:1.3; overflow-wrap:anywhere }
.promo-info p{ margin:0; color:#cbd5e1; line-height:1.6; overflow-wrap:anywhere }
.ribbon{ position:absolute; top:12px; left:12px; background:linear-gradient(135deg, #ef4444, #f87171); color:#111; font-weight:900; font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.25); z-index:1 }
.ribbon.green{ background: linear-gradient(135deg, #10b981, #34d399) }
.ribbon.yellow{ background: linear-gradient(135deg, #f59e0b, #fbbf24) }
.ribbon.blue{ background: linear-gradient(135deg, #3b82f6, #60a5fa) }

/* ===== Product Page ===== */
.product-page {
  display: flex;
  gap: 32px;
  padding: 32px 20px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.sidebar-header h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 12px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 500;
  position: relative;
}

.sidebar-link:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 600;
}

.sidebar-link span {
  font-size: 18px;
}

.sidebar-link.has-dropdown {
  justify-content: space-between;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.sidebar-link:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.product-section {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 32px;
}


/* Loading State */
.loading-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bd);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* No Products State */
.no-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.no-products h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

  .no-products p {
    color: var(--white);
    opacity: 0.8;
  }
  
  /* Product Image Styles */
  .product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
  }
  
  .product-img:hover {
    transform: scale(1.05);
  }

/* Product image in featured cards */
.card-image .product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  }
  
  .product-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    border: 2px dashed rgba(255, 255, 255, 0.3);
  }
  
  .product-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
  }
  
  .hot-sell-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
  }

/* Hot sell badge for featured products */
.card-image {
  position: relative;
}

.card-image .hot-sell-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  font-family: 'Noto Sans Thai', sans-serif;
  }
  

.section-title {
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  text-align: center;
  border-bottom: 3px solid var(--accent-2);
  padding-bottom: 16px;
  letter-spacing: 0.5px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Product Card */
.product-card {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  min-height: 420px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-2);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, rgba(255,190,60,.1), rgba(255,190,60,0));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bd);
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  font-family: 'Noto Sans Thai', sans-serif;
  box-shadow: var(--shadow-sm);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 180px;
}

.product-name {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  line-height: 1.4;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-2);
  font-family: 'Noto Sans Thai', sans-serif;
}

.original-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 500;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans Thai', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #fbbf24;
  background: #1f2937;
  color: #fbbf24;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0 4px;
}

.page-btn:hover {
  background: #fbbf24;
  color: #111111;
}

.page-btn.active {
  background: #fbbf24;
  color: #111111;
  font-weight: 600;
  border-color: #fbbf24;
}

.next-btn {
  background: #1f2937;
  color: #fbbf24;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  padding: 8px 16px;
  width: auto;
  height: 40px;
  font-weight: 500;
  margin-left: 8px;
}

.next-btn:hover {
  background: #fbbf24;
  color: #111111;
  transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-page {
    flex-direction: column;
    gap: 24px;
  }
  
  .sidebar {
    width: 100%;
    position: static;
    top: auto;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .product-section {
    padding: 24px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 20px 16px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sidebar {
    padding: 20px;
  }
  
  .product-section {
    padding: 20px;
  }
  
  .product-card {
    min-height: 380px;
  }
  
  .product-info {
    padding: 16px;
    height: 160px;
  }
  
  .product-name {
    font-size: 15px;
    min-height: 40px;
  }
  
  .current-price {
    font-size: 18px;
  }
  
  .add-to-cart-btn {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .pagination .page-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .product-page {
    padding: 16px 12px;
  }
  
  .sidebar {
    padding: 16px;
  }
  
  .product-section {
    padding: 16px;
  }
  
  .product-grid {
    gap: 16px;
  }
  
  .product-card {
    min-height: 360px;
  }
  
  .product-info {
    padding: 14px;
    height: 150px;
  }
  
  .product-name {
    font-size: 14px;
    min-height: 38px;
  }
  
  .current-price {
    font-size: 16px;
  }
  
  .add-to-cart-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .pagination {
    gap: 6px;
  }
  
  .pagination .page-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ===== Cart Page ===== */
.cart-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px;
}

.cart-container {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.cart-table th,
.cart-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--bd);
}

.cart-table th {
  background: rgba(255,255,255,.03);
  font-weight: 600;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
}

.cart-table td {
  color: #cbd5e1;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-image {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-image .product-emoji {
  font-size: 32px;
  text-align: center;
}

.cart-item-info h4 {
  margin: 0 0 4px 0;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
}

.cart-item-info p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.cart-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.current-price {
  font-weight: 600;
  color: var(--accent-2);
  font-size: 16px;
}

.original-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 12px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 18px;
  font-weight: bold;
}

.quantity-btn:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-color: var(--accent-2);
}

.quantity-display {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
}

.remove-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid #ef4444;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #ef4444;
  color: white;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.empty-cart h3 {
  margin: 0 0 16px 0;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.empty-cart p {
  margin: 0 0 32px 0;
  color: #cbd5e1;
  font-size: 16px;
}

.cart-summary {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-2);
  border-top: 2px solid var(--accent-2);
  padding-top: 16px;
  margin-top: 16px;
}

.summary-row span:last-child {
  color: var(--accent-2);
  font-weight: 600;
}

.summary-row.total span:last-child {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 700;
}

.cart-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cart-btn {
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.cart-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border: none;
}

.cart-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.cart-btn.secondary {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid var(--bd);
}

.cart-btn.secondary:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-color: var(--accent-2);
}

.cart-btn.danger {
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
}

.cart-btn.danger:hover {
  background: #ef4444;
  color: white;
}

/* Responsive Cart */
@media (max-width: 768px) {
  .cart-page {
    padding: 20px 16px;
  }
  
  .cart-table th,
  .cart-table td {
    padding: 12px 8px;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .cart-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cart-btn {
    width: 100%;
  }
}

/* ===== FAQ ===== */
.faq-container{
  max-width:800px;
  margin:0 auto;
}
.faq-title {
  text-align: center;
  margin: 0 auto 40px auto;
  font-size: clamp(24px, 4vw, 32px);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 700;
  color: #fff;
  border-left: 6px solid #FBBF24;
  padding-left: 10px;
  display: inline-block;   /* ทำให้ข้อความ+เส้นอยู่ตรงกลางได้จริง */
}
.faq-item{
  background:var(--card);
  border:1px solid var(--bd);
  border-radius:var(--radius);
  margin-bottom:16px;
  overflow:hidden;
}
.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  cursor:pointer;
  transition:background 0.2s;
}
.faq-question:hover{
  background:rgba(255,255,255,.02);
}
.faq-question h3{
  margin:0;
  font-size:16px;
  color:var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 500;
}
.faq-toggle{
  font-size:24px;
  color:var(--accent-2);
  font-weight:bold;
  transition:transform 0.2s;
}
.faq-answer{
  padding:0 20px 20px;
  color:#cbd5e1;
  line-height:1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
}

.faq-item.active .faq-answer{
  max-height: 200px;
}
.faq-item.active .faq-toggle{
  transform:rotate(45deg);
}

/* ===== Sections ===== */
.section{ padding:36px 20px }
.section h2{ 
  margin:0 0 16px; 
  font-size: clamp(24px, 3.2vw, 32px); 
  font-family: 'Noto Sans Thai', sans-serif; 
  font-weight: 700;
  border-left: 6px solid #FBBF24;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding-left: 10px;
}
.grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--bd);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow-sm);
}
.card h3{ 
  margin:0 0 8px; 
  font-family: 'Noto Sans Thai', sans-serif; 
  font-weight: 600; 
  font-size: 16px;
  line-height: 1.3;
}
.card p{ 
  color:#cbd5e1; 
  margin:0 0 14px; 
  font-family: 'Noto Sans Thai', sans-serif; 
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.price{ 
  font-weight:700; 
  color:var(--accent-2); 
  font-family: 'Noto Sans Thai', sans-serif; 
  font-size: 19px;
  line-height: 1.2;
}

/* Price with original price */
.price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.current-price {
  font-weight: 800;
  color: var(--accent-2);
  font-size: 18px;
  font-family: 'Noto Sans Thai', sans-serif;
}

.original-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 500;
}
.badge{ display:inline-block; background:#1f2937; border:1px solid #334155; padding:4px 8px; border-radius:999px; font-size:12px; color:#cbd5e1; font-family: 'Noto Sans Thai', sans-serif; }

/* Tables (Cart) */
.table{
  width:100%; border-collapse: collapse; background:var(--card); border:1px solid var(--bd); border-radius:12px; overflow:hidden;
}
.table th, .table td{ padding:12px 14px; border-bottom:1px solid #243145; font-family: 'Noto Sans Thai', sans-serif; }
.table th{ text-align:left; color:#cbd5e1; font-weight:700; background:#121a2f }
.table tfoot td{ font-weight:800 }

/* Footer */
.footer{ padding:28px 20px; color:#cbd5e1; border-top:1px solid var(--bd); background:#0a1223cc; backdrop-filter: blur(6px) }
.footer a{ color:#e5e7eb; text-decoration:none; font-family: 'Noto Sans Thai', sans-serif; }
.footer a:hover{ text-decoration:underline }

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

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid, .grid-3{ grid-template-columns: 1fr 1fr }
  .grid-6{ grid-template-columns: repeat(3, 1fr); }
  .features, .info-grid, .reviews-grid{ grid-template-columns: 1fr }
  .beer-cans-3d{ flex-direction:column; gap:30px; }
  .hero-image, .beer-tasting, .brewery-scene{ height:300px; }
  
  .hero h1 {
    font-size: 32px;
    margin: 0 0 16px;
  }
  
  .hero-description {
    margin: 0 0 24px 0;
  }
  
  .hero-description p {
    font-size: clamp(16px, 2.2vw, 18px);
    margin: 0 0 10px 0;
  }
  .can-3d-body{
    transform: rotateY(-10deg) rotateX(3deg);
  }
  .can-3d-brand{
    font-size: clamp(14px, 4vw, 20px);
  }
  .can-3d-type{
    font-size: clamp(8px, 2.5vw, 12px);
  }
  .can-3d-details{
    font-size: clamp(6px, 2vw, 8px);
  }
}
@media (max-width: 620px){
  .grid, .grid-3, .grid-6{ grid-template-columns: 1fr }
  .features, .info-grid, .reviews-grid{ grid-template-columns: 1fr }
  .hero-image, .beer-tasting, .brewery-scene{ height:250px; }
  .can-3d-body{
    transform: rotateY(-5deg) rotateX(2deg);
  }
  .hero-beer-can-3d{
    aspect-ratio: 2 / 3;
  }
}

/* ===== REVIEW Page Styles ===== */

/* Review Hero Section */
.review-hero {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
  pointer-events: none;
}

.review-hero__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.review-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.review-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 500px;
}

.review-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  backdrop-filter: blur(10px);
  min-width: 120px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-family: 'Noto Sans Thai', sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 500;
  font-family: 'Noto Sans Thai', sans-serif;
}

/* Review Filters */
.review-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.chip {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  backdrop-filter: blur(10px);
}

.chip:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  transform: translateY(-2px);
}

.chip.active {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.chip.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(251, 191, 36, 0.03));
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.1);
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid rgba(245, 158, 11, 0.3);
  position: relative;
  z-index: 1;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-card h3 {
  color: #fbbf24;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Noto Sans Thai', sans-serif;
  position: relative;
  z-index: 1;
}

.review-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.badge {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-family: 'Noto Sans Thai', sans-serif;
}

.dot {
  width: 4px;
  height: 4px;
  background: #6b7280;
  border-radius: 50%;
}

.review-meta span:last-child {
  color: #9ca3af;
  font-size: 0.875rem;
  font-style: italic;
}

/* Load More Button */
.btn.secondary.btn-small {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn.secondary.btn-small:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.faq-section h2::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.05);
}

.faq-icon {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
  cursor: pointer;
}

.faq-question h3 {
  color: #fbbf24;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Noto Sans Thai', sans-serif;
  flex: 1;
  padding-right: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.faq-icon {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  padding: 0 2rem 1.5rem 2rem;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: #d1d5db;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  text-align: justify;
  letter-spacing: 0.025em;
}

/* ===== LALAMOVE Page Styles ===== */

/* Offer Cards */
.offer-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.offer-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: bounce 2s infinite;
}

.offer-card h3 {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.offer-card p {
  color: #d1d5db;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0); 
  }
  40% { 
    transform: translateY(-8px); 
  }
  60% { 
    transform: translateY(-4px); 
  }
}

/* Grab Hero Section */
.grab-hero {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border-radius: 24px;
  padding: 4rem 3rem;
  margin-bottom: 4rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.grab-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
  pointer-events: none;
}

.grab-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.grab-hero .tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.grab-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1.2;
}

.grab-hero-text p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.grab-hero .cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.grab-hero .btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.grab-hero .btn:not(.secondary) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  border: none;
}

.grab-hero .btn:not(.secondary):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.grab-hero .btn.secondary {
  background: transparent;
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.grab-hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

.grab-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.grab-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

.grab-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 1rem;
}

.notice-icon {
  font-size: 1.5rem;
  color: #fbbf24;
}

.notice-content {
  color: #d1d5db;
  line-height: 1.5;
}

.notice-content strong {
  color: #fbbf24;
}

.grab-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.grab-delivery-bike {
  position: relative;
  width: 200px;
  height: 120px;
  margin-bottom: 1rem;
}

.bike-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.bike-wheel {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #fbbf24;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
}

.front-wheel {
  top: 60px;
  right: 20px;
  animation: spin 3s linear infinite;
}

.back-wheel {
  top: 60px;
  left: 20px;
  animation: spin 3s linear infinite;
}

.bike-seat {
  position: absolute;
  top: 40px;
  left: 50px;
  width: 20px;
  height: 8px;
  background: #fbbf24;
  border-radius: 4px;
}

.bike-handlebar {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 30px;
  height: 3px;
  background: #fbbf24;
  border-radius: 2px;
}

.delivery-box {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  animation: float 2s ease-in-out infinite;
}

.beer-cans {
  display: flex;
  gap: 2px;
}

.beer-can {
  width: 8px;
  height: 20px;
  background: #fff;
  border-radius: 2px;
}

.grab-logo {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.delivery-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 500;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.delivery-illustration {
  position: relative;
  width: 200px;
  height: 150px;
}

.delivery-bike {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3rem;
  animation: bounce 2s infinite;
}

.delivery-box {
  position: absolute;
  top: 50px;
  right: 0;
  font-size: 2.5rem;
  animation: float 3s infinite;
}

.delivery-route {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.route-dot {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
}

.route-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Grab Categories */
.grab-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #fbbf24;
  font-size: 2rem;
}

.category-section {
  margin-bottom: 4rem;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #fbbf24;
  font-size: 1.5rem;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  padding-bottom: 1rem;
}

.category-icon {
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.grab-product-card {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.grab-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.grab-categories .product-image {
  margin-bottom: 1rem;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-bottle, .beer-can {
  width: 60px;
  height: 120px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  font-weight: bold;
  font-size: 0.8rem;
}

.beer-bottle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: #1f2937;
  border-radius: 0 0 10px 10px;
}

.beer-can::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: #1f2937;
  border-radius: 0 0 8px 8px;
}

.grab-categories .product-info h4 {
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.grab-categories .product-desc {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.grab-categories .product-specs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.grab-categories .spec {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.grab-categories .product-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.grab-categories .current-price {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.25rem;
}

.grab-categories .original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.grab-categories .product-info { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  align-items: center;
  text-align: center;
}

.grab-categories .add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1f2937;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  margin-top: auto;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Delivery Info */
.delivery-info h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #fbbf24;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.delivery-card {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.delivery-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.delivery-card h3 {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.delivery-card p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.delivery-time, .delivery-area, .delivery-min, .delivery-fee {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

/* How to Order */
.how-to-order h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #fbbf24;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1f2937;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content h3 {
  color: #fbbf24;
  margin-bottom: 1rem;
  text-align: center;
}

.step-content p {
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grab-hero {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .grab-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .grab-hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .grab-hero-visual {
    order: -1;
  }
  
  .grab-delivery-bike {
    width: 150px;
    height: 100px;
  }
  
  .delivery-stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 0.75rem 1rem;
  }
  
  .offer-card {
    padding: 2rem 1.5rem;
  }
  
  .offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .offer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .offer-card p {
    font-size: 0.9rem;
  }
  
  .grab-features {
    justify-content: center;
  }
  
  /* Review Page Responsive */
  .review-hero {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .review-hero__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .review-title {
    font-size: 2rem;
  }
  
  .review-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .stat {
    min-width: 100px;
    padding: 1rem 0.75rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .review-filters {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .chip {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-avatar {
    width: 50px;
    height: 50px;
  }
  
  .review-card h3 {
    font-size: 1.125rem;
  }
  
  .review-card p {
    font-size: 0.9rem;
  }
  
  /* FAQ Responsive */
  .faq-section h2::before {
    display: none;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-grid,
  .order-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .grab-features {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== CHECKOUT MODALS ===== */

/* Cart Confirmation Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.cart-modal-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid var(--bd);
  box-shadow: var(--shadow-md);
}

.cart-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-modal-header h2 {
  margin: 0;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
}

.cart-modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cart-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.cart-modal-body {
  padding: 24px;
}

.cart-items-confirmation {
  margin-bottom: 24px;
}

.cart-items-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.cart-items-table th,
.cart-items-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--bd);
}

.cart-items-table th {
  background: rgba(255,255,255,.03);
  font-weight: 600;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
}

.cart-items-table td {
  color: #cbd5e1;
}

.cart-item-confirmation {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.item-thumbnail {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.item-thumbnail .product-emoji {
  font-size: 32px;
  text-align: center;
}

.item-details h4 {
  margin: 0 0 8px 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Noto Sans Thai', sans-serif;
}

.item-details p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-family: 'Noto Sans Thai', sans-serif;
}

.item-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.current-price {
  font-weight: 600;
  color: var(--accent-2);
  font-size: 16px;
  font-family: 'Noto Sans Thai', sans-serif;
}

.original-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 12px;
  font-family: 'Noto Sans Thai', sans-serif;
}

.item-quantity {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-family: 'Noto Sans Thai', sans-serif;
}

.remove-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid #ef4444;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  min-width: 60px;
}

.remove-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.remove-btn:active {
  transform: translateY(0);
}

/* Quantity controls in cart modal */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent-2);
  background: transparent;
  color: var(--accent-2);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: 'Noto Sans Thai', sans-serif;
}

.quantity-btn:hover {
  background: var(--accent-2);
  color: var(--white);
  transform: scale(1.1);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.decrease-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: white;
}

.increase-btn:hover {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.quantity-display {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 14px;
}

.cart-summary {
  border-top: 1px solid var(--bd);
  padding-top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-row.total-row {
  border-top: 1px solid var(--accent-2);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
}

.subtotal-amount,
.discount-amount,
.shipping-amount {
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
}

.total-amount {
  color: var(--accent-2);
  font-weight: 600;
  font-family: 'Noto Sans Thai', sans-serif;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.total-amount {
  color: var(--accent);
  font-size: 24px;
}

.cart-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
}

.btn-cancel, .btn-checkout {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
}

.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid var(--bd);
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-checkout {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Checkout Form Modal */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.checkout-modal-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--bd);
  box-shadow: var(--shadow-md);
}

.checkout-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-modal-header h2 {
  margin: 0;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
}

.checkout-modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.checkout-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.checkout-modal-body {
  padding: 24px;
}

.checkout-section {
  margin-bottom: 32px;
}

.checkout-section h3 {
  margin: 0 0 16px 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--bd);
  padding-bottom: 8px;
}

.order-items {
  margin-bottom: 16px;
}

.order-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  align-items: center;
  background: transparent;
}

.order-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-name {
  font-weight: 600;
  color: var(--white);
}

.item-price, .item-quantity, .item-total {
  text-align: right;
  color: var(--white);
}

.item-total {
  font-weight: 600;
  color: var(--accent);
}

.order-total {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--bd);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: 'Noto Sans Thai', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkout-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
}

.btn-confirm {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: var(--white);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Line Contact Modal */
.line-contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.line-contact-modal-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--bd);
  box-shadow: var(--shadow-md);
}

.line-contact-header h2 {
  margin: 0;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  padding: 24px 24px 16px;
}

.line-contact-body {
  padding: 0 24px 24px;
}

.line-contact-body p {
  margin: 0 0 24px 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

.btn-line {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.line-contact-footer {
  padding: 16px 24px 24px;
}

.btn-close {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans Thai', sans-serif;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--bd);
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Modal Design */
@media (max-width: 768px) {
  .cart-modal-content,
  .checkout-modal-content,
  .line-contact-modal-content {
    width: 95%;
    margin: 20px;
    max-height: 90vh;
  }
  
  .order-item {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    padding: 12px 0;
  }
  
  .item-price, .item-quantity, .item-total {
    text-align: center;
  }
  
  .cart-modal-footer,
  .checkout-modal-footer {
    flex-direction: column;
  }
  
  .cart-items-table {
    font-size: 12px;
  }
  
  .cart-items-table th,
  .cart-items-table td {
    padding: 8px;
  }
  
  .cart-item-confirmation {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .item-thumbnail {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .item-details {
    text-align: center;
  }
  
  .item-details h4 {
    font-size: 14px;
  }
  
  .item-details p {
    font-size: 12px;
  }
  
  .current-price {
    font-size: 14px;
  }
  
  .original-price {
    font-size: 10px;
  }
  
  .quantity-controls {
    gap: 6px;
  }
  
  .quantity-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .quantity-display {
    font-size: 12px;
    min-width: 20px;
  }
}

/* Lalamove Checkout Button */
.lalamove-checkout {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  border: none !important;
  margin-top: 8px !important;
  font-size: 0.85rem !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  width: 100% !important;
  text-align: center !important;
}

.lalamove-checkout:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.lalamove-checkout i {
  margin-right: 6px !important;
}

/* Shipping Notice */
.shipping-notice {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  text-align: center;
}

.shipping-notice p {
  margin: 0;
  color: #10b981;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
