    :root {
      --primary: #ffb7c5;
      --primary-dark: #ff9fb4;
      --secondary: #203239;
      --accent: #2a3c48;
      --light: #ffffff;
      --text-light: #f8f9fa;
      --text-muted: #9ca3af;
      --danger: #e74c3c;
      --success: #27ae60;
      --shadow: 0 10px 30px rgba(0,0,0,0.2);
      --radius: 12px;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--secondary);
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(32,50,57,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,183,197,0.2);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
    }

    .nav-group {
      display: flex;
      gap: 2rem;
    }

    .nav-group a {
      color: var(--text-light);
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      transition: all 0.3s;
    }

    .nav-group a:hover, .nav-group a.active {
      color: var(--primary);
      background: rgba(255,183,197,0.1);
    }

    .actions {
      display: flex;
      gap: 1rem;
    }

    .icon-btn {
      background: rgba(255,255,255,0.1);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
    }

    .icon-btn:hover {
      background: var(--primary);
      color: var(--secondary);
    }

    .badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: var(--danger);
      color: white;
      font-size: 0.7rem;
      padding: 2px 6px;
      border-radius: 10px;
      display: none;
    }

    /* Search Section */
    .search-section {
      margin-top: 80px;
      padding: 2rem 1rem;
      text-align: center;
    }

    .search-bar {
      max-width: 600px;
      margin: 1rem auto;
      position: relative;
    }

    .search-wrapper {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,183,197,0.2);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      padding: 0 1rem;
    }

    .search-wrapper input {
      width: 100%;
      padding: 1rem;
      background: transparent;
      border: none;
      color: var(--text-light);
      outline: none;
    }

    .search-wrapper input::placeholder {
      color: var(--text-muted);
    }

    .filters {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .filters select {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,183,197,0.2);
      color: var(--text-light);
      padding: 0.5rem 1rem;
      border-radius: var(--radius);
      cursor: pointer;
    }

    /* Product Grid */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem 2rem;
    }

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

    .card {
      background: linear-gradient(145deg, var(--accent), var(--secondary));
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s;
      cursor: pointer;
      position: relative;
    }

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

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-body {
      padding: 1.5rem;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .card-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .card-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .card-footer {
      display: flex;
      gap: 0.5rem;
    }

    .btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: var(--radius);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--secondary);
      flex: 1;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: var(--secondary);
    }

    .wish-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(0,0,0,0.7);
      color: white;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
    }

    .wish-btn:hover, .wish-btn.active {
      background: var(--danger);
    }

    /* Cart Modal */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal.open {
      display: flex;
    }

    .modal-content {
      background: linear-gradient(145deg, var(--accent), var(--secondary));
      border-radius: var(--radius);
      max-width: 500px;
      width: 90%;
      max-height: 80vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .modal-header {
      padding: 1.5rem;
      background: var(--primary);
      color: var(--secondary);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-body {
      flex: 1;
      padding: 1.5rem;
      overflow-y: auto;
    }

    .cart-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .cart-item img {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      object-fit: cover;
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-name {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .cart-item-price {
      color: var(--primary);
      font-weight: 600;
    }

    .qty-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.1);
      padding: 0.25rem;
      border-radius: 20px;
    }

    .qty-controls button {
      width: 30px;
      height: 30px;
      border: none;
      background: var(--primary);
      color: var(--secondary);
      border-radius: 50%;
      cursor: pointer;
    }

    .remove-btn {
      background: transparent;
      border: none;
      color: var(--danger);
      cursor: pointer;
      padding: 0.5rem;
    }

    .total-section {
      padding: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .total-line {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }

    .total-final {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Toast */
    .toast {
      position: fixed;
      top: 100px;
      right: 20px;
      background: var(--success);
      color: white;
      padding: 1rem 1.5rem;
      border-radius: var(--radius);
      z-index: 3000;
      transform: translateX(100%);
      transition: transform 0.3s;
    }

    .toast.show {
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-group {
        display: none;
      }

      .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
      }

      .filters {
        flex-direction: column;
        align-items: center;
      }

      .filters select {
        width: 100%;
        max-width: 300px;
      }
    }

    .empty-state {
      text-align: center;
      padding: 3rem;
      color: var(--text-muted);
    }

    .empty-state ion-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }
/* ============================================
   PAGINATION STYLES
   Add these to your shop.css file
   ============================================ */

/* Pagination Container */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

/* Pagination Buttons */
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #e5e5e5;
  background: white;
  color: #333;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(.disabled):not(.active) {
  background: #ff9fb4;
  color: white;
  border-color: #ff9fb4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 159, 180, 0.3);
}

.page-btn.active {
  background: #ff9fb4;
  color: white;
  border-color: #ff9fb4;
  box-shadow: 0 4px 12px rgba(255, 159, 180, 0.3);
}

.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-btn ion-icon {
  font-size: 1.2rem;
}

/* Ellipsis between page numbers */
.page-ellipsis {
  padding: 0 0.5rem;
  color: #999;
  font-weight: 500;
  user-select: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .pagination {
    gap: 0.25rem;
    padding: 2rem 0.5rem;
  }

  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .page-ellipsis {
    padding: 0 0.25rem;
    font-size: 0.9rem;
  }
}

/* Animation for page transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add fade animation to product cards */
.card {
  animation: fadeInUp 0.4s ease;
}

/* Stagger animation for multiple cards */
.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

/* Loading state (optional) */
.pagination.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Alternative minimal style (if you prefer a cleaner look) */
.pagination.minimal .page-btn {
  border: none;
  background: transparent;
  color: #666;
}

.pagination.minimal .page-btn:hover:not(.disabled):not(.active) {
  background: #f5f5f5;
  color: #ff9fb4;
}

.pagination.minimal .page-btn.active {
  background: #ff9fb4;
  color: white;
}

/* Page info text (optional - shows "Page 1 of 5") */
.page-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Ensure pagination is visible on all backgrounds */
.pagination {
  background: transparent;
  z-index: 1;
}
/* From Uiverse.io by jetakazono */ 
.button {
  background-color: transparent;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.button svg {
  width: 0;
  height: 0;
}

.button p {
  width: 150px;
  height: 60px;
  z-index: 9;
  font-size: 20px;
  color: white;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgb(34, 143, 147);
  letter-spacing: 1px;
  user-select: none;
}

.button p:hover + .liquid span:not(.bg) {
  animation-play-state: running;
}

.button p:hover {
  transform: scale(1.1);
}

.button:active p {
  transform: scale(1);
}

.button .liquid {
  filter: url(#gooey);
  width: 150px;
  height: 200px;
  position: absolute;
  inset: 0;
}

.button .liquid > span {
  position: absolute;
  top: 1px;
  left: -35px;
  width: 100%;
  height: 100%;
  display: block;
  animation: rotate 2.5s ease infinite;
  animation-delay: calc(0.15s * var(--i));
  animation-play-state: paused;
}

.button .liquid > span > span {
  animation: move 6s ease-in-out infinite;
  animation-delay: calc(0.2s * var(--i));
  background: rgb(247, 0, 164);
  width: 50px;
  height: 50px;
  display: block;
  margin: auto;
  border-radius: 50%;
}

.button .liquid span > span::before {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  top: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(#e40072, #23d2db);
  border-radius: 50%;
  box-shadow: 0 0 30px hsl(0, 0%, 69%);
}

.button .liquid span.bg {
  animation: none;
}
.button .liquid span.bg > span::before {
  width: 150px;
  height: 50px;
  left: calc(50% - 40px);
  border-radius: 20px;
}

.button .liquid span:nth-child(2) {
  left: -20px;
}
.button .liquid span:nth-child(1) {
  left: -40px;
}
.button .liquid span:nth-child(3) {
  left: -50px;
}
.button .liquid span:nth-child(4) {
  left: 20px;
}
.button .liquid span:nth-child(7) {
  left: 40px;
}
.button .liquid span:nth-child(6) {
  left: 50px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes move {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  20% {
    transform: translateX(-8px) translateY(-4px) scale(1.1);
  }
  40% {
    transform: translateX(8px) translateY(8px) scale(0.9);
  }
  60% {
    transform: translateX(-8px) translateY(4px) scale(1.1);
  }
  80% {
    transform: translateX(5px) translateY(-8px) scale(0.9);
  }
}

@media (pointer: coarse), (pointer: none) {
  .button .liquid > span > span {
    background: transparent;
  }
}
