* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.5;
  padding-bottom: 2rem;
}

/* Header */
.header {
  background: #2d5a3d;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.cart-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
}

.cart-link:hover {
  background: rgba(255,255,255,0.3);
}

.delivery-banner {
  background: #1a472a;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Main */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

.main h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #444;
}

/* Product grid - main page */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #eee;
}

.product-card .info {
  padding: 0.9rem;
}

.product-card .name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.product-card .price {
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.product-card .price .price-discount-pct {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
}

.product-card .price .price-original {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.product-card .price .price-current {
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

.product-card .price .price-save-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
}

/* Product page */
.product-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
}

.product-detail {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

/* Product detail: main image + slider agar multiple images */
.product-slider {
  position: relative;
  background: #eee;
}

.product-detail .product-slider img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 1;
  padding: 0;
  z-index: 2;
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255,255,255,0.9);
}

.slider-dot.active {
  background: #fff;
  box-shadow: 0 0 0 2px #2d5a3d;
}

.product-detail .info {
  padding: 1.25rem;
}

.product-detail .name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-detail .price,
.product-detail .price-block {
  margin-bottom: 1rem;
}

/* Discounted price: original strike + current + Save badge */
.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.price-original {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
}

.price-save-badge {
  background: #e8d5b5;
  color: #333;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-discount-pct {
  background: #c62828;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-offer-total {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b5e20;
}

/* PACKAGING: NORMAL / HIDDEN */
.packaging-section {
  margin-bottom: 1rem;
}

.packaging-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.packaging-options {
  display: flex;
  gap: 0.5rem;
}

.packaging-btn {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  transition: background 0.2s, color 0.2s;
}

.packaging-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Order form ke andar packaging */
.packaging-in-form .packaging-label {
  display: block;
  margin-bottom: 0.5rem;
}

/* Quantity selector */
.quantity-section {
  margin-bottom: 1rem;
}

.quantity-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 40px;
  height: 38px;
  border: none;
  background: #fff;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.qty-btn:hover {
  background: #f0f0f0;
}

.qty-value {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

/* Red stock warning */
.stock-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1.25rem;
}

.stock-warning-icon {
  color: #c62828;
  font-size: 1.1rem;
}

.stock-warning-text {
  color: #c62828;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-detail .desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Har product pe: 3 trust points (heart, check, return policy) */
.product-trust-points {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-icon-heart {
  color: #c62828;
}

.trust-icon-check {
  color: #2d5a3d;
  font-weight: 700;
}

/* Product offers – Add to Cart ke uppar, select one (poll style) */
.product-offers-wrap {
  margin-bottom: 1rem;
}

.product-offers-wrap .product-offers-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1b5e20;
  margin-bottom: 0.5rem;
  display: block;
}

.product-offers {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem 0;
}

.offer-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: background 0.15s, border-color 0.15s;
}

.offer-option:hover {
  background: #f0f9f4;
  border-color: #2d5a3d;
}

.offer-option input[type="radio"] {
  margin: 0;
  accent-color: #2d5a3d;
  cursor: pointer;
}

.offer-option input[type="radio"]:checked + .offer-option-text {
  color: #1b5e20;
}

.offer-option:has(input:checked) {
  background: #e8f5e9;
  border-color: #2d5a3d;
}

.offer-option-text {
  flex: 1;
}

/* Offer ke neeche breakdown: X itne ki hu gai | Y itne mil rahe + Save */
.product-offer-breakdown {
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #e8f5e9;
  border-radius: 8px;
  border: 1px solid #c8e6c9;
  font-size: 0.95rem;
  color: #1b5e20;
}

.offer-breakdown-line {
  margin-bottom: 0.35rem;
}

.offer-breakdown-line strong,
.offer-save-line strong {
  color: #0d3d0d;
}

.offer-save-line {
  font-weight: 600;
  color: #2e7d32;
}

.trust-icon-recycle {
  color: #2d5a3d;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-detail .btn-group-top {
  margin: 1rem 0;
}

.btn {
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-cart {
  background: #eee;
  color: #333;
}

.btn-buy {
  background: #2d5a3d;
  color: white;
}

/* ابھی خریدیں - same as Buy Now, with animation */
.btn-buy-urdu {
  background: linear-gradient(135deg, #2d5a3d 0%, #3d7a4d 100%);
  color: white;
  position: relative;
  animation: btn-urdu-pulse 2s ease-in-out infinite;
  box-shadow: 0 2px 12px rgba(45, 90, 61, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Order on Whatsapp - WhatsApp green + icon */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4) !important;
  animation: btn-whatsapp-pulse 2s ease-in-out infinite;
}
.btn-whatsapp:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5) !important;
  animation: btn-whatsapp-pulse 1s ease-in-out infinite;
}
@keyframes btn-whatsapp-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 2px 20px rgba(37, 211, 102, 0.6); }
}
.btn-whatsapp-icon {
  display: inline-block;
  margin-right: 0.4em;
  vertical-align: -0.35em;
  line-height: 1;
}
.btn-whatsapp-icon svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
}
.btn-whatsapp .btn-urdu-text {
  display: inline-block;
  animation: btn-urdu-text-glow 2.2s ease-in-out infinite;
}
.btn-buy-urdu .btn-urdu-text {
  display: inline-block;
  animation: btn-urdu-text-glow 2.2s ease-in-out infinite;
}
.btn-buy-urdu:hover .btn-urdu-text,
.btn-whatsapp:hover .btn-urdu-text {
  animation: btn-urdu-text-glow 1.5s ease-in-out infinite;
}
.btn-buy-urdu:hover {
  animation: btn-urdu-pulse 1s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.5);
  transform: scale(1.02);
}
@keyframes btn-urdu-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(45, 90, 61, 0.4); }
  50% { box-shadow: 0 2px 20px rgba(45, 90, 61, 0.6); }
}
@keyframes btn-urdu-text-glow {
  0% {
    text-shadow: 0 0 6px rgba(255,255,255,0.5);
  }
  25% {
    text-shadow: 0 0 12px rgba(255,255,255,0.75);
  }
  50% {
    text-shadow: 0 0 18px rgba(255,255,255,0.95);
  }
  75% {
    text-shadow: 0 0 12px rgba(255,255,255,0.75);
  }
  100% {
    text-shadow: 0 0 6px rgba(255,255,255,0.5);
  }
}

/* Order form - neeche dikhega Buy Now pe click */
.order-form-box {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-top: 1rem;
  display: none;
}

/* Cart bar ke andar: Confirm Purchase ke neeche hi form (red box wali jagah) */
.cart-bar .order-form-box {
  margin-top: 1rem;
}

.order-form-box.show {
  display: block;
}

.order-form-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #333;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-submit {
  background: #2d5a3d;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  opacity: 0.9;
}

.order-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  display: none;
}

.order-success.show {
  display: block;
}

/* Invoice inside order success */
.order-success .order-success-msg {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.order-success .order-id-box {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.order-success .invoice-box {
  background: #fff;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.order-success .invoice-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.order-success .invoice-meta {
  margin-bottom: 0.35rem;
  color: #444;
}

.order-success .invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.order-success .invoice-table th,
.order-success .invoice-table td {
  padding: 0.4rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.order-success .invoice-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #333;
}

.order-success .invoice-table tfoot td {
  border-bottom: none;
  padding-top: 0.5rem;
  font-size: 0.95rem;
}

/* Product page - cart bar (red box wali jagah): Your Cart + name, price */
.cart-bar {
  background: #eaeaea;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.cart-bar-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cart-bar-items {
  font-size: 0.95rem;
}

.cart-bar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ddd;
}

.cart-bar-item:last-child {
  border-bottom: none;
}

.cart-bar-name {
  color: #333;
}

.cart-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-bar-price {
  font-weight: 600;
  color: #2d5a3d;
}

.btn-remove {
  background: #c62828;
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-remove:hover {
  background: #b71c1c;
}

.cart-bar-actions {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ccc;
}

.btn-confirm-purchase {
  width: 100%;
  padding: 0.65rem 1rem;
  background: #2d5a3d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-confirm-purchase:hover {
  opacity: 0.9;
}

.cart-bar-empty {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Related products - product page ke neeche, 2 products per row */
/* Categories + Sub-categories (product page – Products se pehle) */
.categories-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.categories-strip,
.subcategories-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.subcategories-strip {
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 3px solid #2d5a3d;
}
.subcategories-strip:empty {
  display: none;
}
.category-pill,
.subcategory-pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #fff;
  color: #444;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.category-pill:hover,
.subcategory-pill:hover {
  background: #e8f5e9;
  border-color: #2d5a3d;
  color: #2d5a3d;
}
.category-pill.active,
.subcategory-pill.active {
  background: #2d5a3d;
  border-color: #2d5a3d;
  color: #fff;
}
.subcategory-pill {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
}

.related-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.related-section .product-grid {
  grid-template-columns: repeat(2, 1fr);
}

.related-title {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 1rem;
}

/* Cart page simple */
.cart-list {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cart-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}

/* Reviews section - neeche, Add a review */
.reviews-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.reviews-title {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 1rem;
}

.add-review-box {
  margin-bottom: 1.25rem;
}

.btn-add-review {
  padding: 0.5rem 1rem;
  background: #2d5a3d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-add-review:hover {
  opacity: 0.9;
}

.review-form {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  max-width: 400px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.reviews-list::-webkit-scrollbar {
  width: 8px;
}

.reviews-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.reviews-list::-webkit-scrollbar-thumb {
  background: #2d5a3d;
  border-radius: 4px;
}

.review-stars {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.2;
}

.review-stars .star {
  color: #ddd;
}

.review-stars .star-full {
  color: #f5a623;
}

.review-stars .star-half {
  color: #f5a623;
  display: inline-block;
  width: 0.55em;
  overflow: hidden;
  direction: ltr;
}

.review-stars .star-empty {
  color: #e0e0e0;
}

.review-stars .star-rating-text {
  font-size: 0.8rem;
  color: #666;
  margin-left: 0.25rem;
  font-weight: 500;
}

.review-card {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border-left: 4px solid #2d5a3d;
}

.review-card-mine {
  border-left-color: #1a472a;
  background: #f0f7f2;
}

.review-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d5a3d;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.review-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.review-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Data loading overlay - jab tak data load nahi hota */
.data-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.data-loading-overlay.data-loading-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.data-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e8e8e8;
  border-top-color: #2d5a3d;
  border-radius: 50%;
  animation: data-load-spin 0.9s linear infinite;
}
.data-loading-text {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  animation: data-load-pulse 1.2s ease-in-out infinite;
}
.data-loading-skeleton {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  max-width: 900px;
  padding: 0 1rem;
}
.data-loading-skeleton .sk-card {
  width: 160px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: data-load-shimmer 1.5s ease-in-out infinite;
  border-radius: 12px;
  overflow: hidden;
}
.data-loading-skeleton .sk-card .sk-img {
  height: 140px;
  background: #e0e0e0;
}
.data-loading-skeleton .sk-card .sk-line {
  height: 14px;
  margin: 10px 12px 6px;
  border-radius: 4px;
  background: #e8e8e8;
}
.data-loading-skeleton .sk-card .sk-line.short {
  width: 50%;
  margin-top: 0;
}
@keyframes data-load-spin {
  to { transform: rotate(360deg); }
}
@keyframes data-load-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes data-load-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
}
