/* /Layout/Footer.razor.rz.scp.css */
.site-footer[b-7409b726qj] {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

/* Subscribe Section */
.subscribe-section[b-7409b726qj] {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #fafafa;
}

.subscribe-section h3[b-7409b726qj] {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.subscribe-form[b-7409b726qj] {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.email-input[b-7409b726qj] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-right: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-input:focus[b-7409b726qj] {
  border-color: #ff6b9d;
}

.email-input[b-7409b726qj]::placeholder {
  color: #999;
}

.subscribe-btn[b-7409b726qj] {
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  color: white;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover[b-7409b726qj] {
  background: #ff6b9d;
  border-color: #ff6b9d;
}

.subscribe-btn svg[b-7409b726qj] {
  transform: rotate(90deg);
}

/* Footer Bottom */
.footer-bottom[b-7409b726qj] {
  padding: 2rem 1.5rem;
  text-align: center;
}

.payment-methods[b-7409b726qj] {
  margin-bottom: 1.5rem;
}

.payment-label[b-7409b726qj] {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.75rem;
}

.payment-icons[b-7409b726qj] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.payment-icon[b-7409b726qj] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 4px 6px;
  transition: all 0.2s ease;
}

.payment-icon:hover[b-7409b726qj] {
  border-color: #ff6b9d;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.15);
}

.payment-icon svg[b-7409b726qj] {
  display: block;
}

.footer-info[b-7409b726qj] {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
}

.copyright[b-7409b726qj] {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.copyright a[b-7409b726qj] {
  color: #1a1a1a;
  text-decoration: none;
}

.copyright a:hover[b-7409b726qj] {
  color: #ff6b9d;
}

.powered-by[b-7409b726qj] {
  color: #999;
  margin-left: 0.5rem;
}

.footer-links[b-7409b726qj] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-link[b-7409b726qj] {
  font-size: 0.7rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover[b-7409b726qj] {
  color: #ff6b9d;
}

.divider[b-7409b726qj] {
  color: #ccc;
  font-size: 0.7rem;
}

@media screen and (max-width: 480px) {
  .footer-links[b-7409b726qj] {
    flex-direction: column;
    gap: 0.5rem;
  }

  .divider[b-7409b726qj] {
    display: none;
  }
}
/* /Layout/Header.razor.rz.scp.css */
.site-header[b-ydjoau1l4k] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
}

.header-container[b-ydjoau1l4k] {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Navigation */
.nav-left[b-ydjoau1l4k] {
  display: flex;
  gap: 2rem;
}

.nav-link[b-ydjoau1l4k] {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link[b-ydjoau1l4k]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff6b9d;
  transition: width 0.3s ease;
}

.nav-link:hover[b-ydjoau1l4k] {
  color: #ff6b9d;
}

.nav-link:hover[b-ydjoau1l4k]::after {
  width: 100%;
}

/* Center Logo */
.logo[b-ydjoau1l4k] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo a[b-ydjoau1l4k] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon[b-ydjoau1l4k] {
  font-size: 1.2rem;
}

.logo-text[b-ydjoau1l4k] {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b9d;
  letter-spacing: 2px;
}

/* Right Actions */
.header-actions[b-ydjoau1l4k] {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn[b-ydjoau1l4k] {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #1a1a1a;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover[b-ydjoau1l4k] {
  color: #ff6b9d;
}

.cart-btn[b-ydjoau1l4k] {
  position: relative;
  text-decoration: none;
}

.cart-count[b-ydjoau1l4k] {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff6b9d;
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
}

/* User Menu */
.user-menu[b-ydjoau1l4k] {
  position: relative;
}

.user-btn.logged-in[b-ydjoau1l4k] {
  padding: 0;
}

.user-avatar[b-ydjoau1l4k] {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.user-dropdown[b-ydjoau1l4k] {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 1001;
  animation: fadeIn-b-ydjoau1l4k 0.2s ease;
  overflow: hidden;
}

.user-info[b-ydjoau1l4k] {
  padding: 1rem;
  background: #fafafa;
}

.user-name[b-ydjoau1l4k] {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.user-email[b-ydjoau1l4k] {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.15rem;
}

.dropdown-divider[b-ydjoau1l4k] {
  height: 1px;
  background: #f0f0f0;
}

.dropdown-item[b-ydjoau1l4k] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover[b-ydjoau1l4k] {
  background: #fff5f8;
}

.dropdown-item.logout[b-ydjoau1l4k] {
  color: #dc2626;
}

.dropdown-item.logout:hover[b-ydjoau1l4k] {
  background: #fef2f2;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay[b-ydjoau1l4k] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  animation: fadeIn-b-ydjoau1l4k 0.2s ease;
}

@keyframes fadeIn-b-ydjoau1l4k {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-container[b-ydjoau1l4k] {
  background: white;
  width: 100%;
  max-width: 650px;
  max-height: calc(100vh - 120px);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideDown-b-ydjoau1l4k 0.3s ease;
}

@keyframes slideDown-b-ydjoau1l4k {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-header[b-ydjoau1l4k] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.search-input-wrapper[b-ydjoau1l4k] {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.search-icon[b-ydjoau1l4k] {
  color: #888;
  flex-shrink: 0;
}

.search-input[b-ydjoau1l4k] {
  flex: 1;
  border: none;
  background: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
}

.search-input[b-ydjoau1l4k]::placeholder {
  color: #aaa;
}

.clear-btn[b-ydjoau1l4k] {
  background: #e0e0e0;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.clear-btn:hover[b-ydjoau1l4k] {
  background: #ff6b9d;
  color: white;
}

.close-search-btn[b-ydjoau1l4k] {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-search-btn:hover[b-ydjoau1l4k] {
  color: #1a1a1a;
}

/* Search Body */
.search-body[b-ydjoau1l4k] {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

/* Search Suggestions */
.search-suggestions h4[b-ydjoau1l4k] {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.suggestion-tags[b-ydjoau1l4k] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suggestion-tag[b-ydjoau1l4k] {
  background: #fff0f5;
  border: 1px solid #ffb3cc;
  color: #ff6b9d;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.suggestion-tag:hover[b-ydjoau1l4k] {
  background: #ff6b9d;
  color: white;
  border-color: #ff6b9d;
}

/* No Results */
.no-results[b-ydjoau1l4k] {
  text-align: center;
  padding: 3rem 1rem;
}

.no-results-icon[b-ydjoau1l4k] {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-results h4[b-ydjoau1l4k] {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.no-results p[b-ydjoau1l4k] {
  color: #888;
  font-size: 0.9rem;
}

/* Search Results */
.results-header[b-ydjoau1l4k] {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.results-grid[b-ydjoau1l4k] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.result-item[b-ydjoau1l4k] {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.result-item:hover[b-ydjoau1l4k] {
  background: #fff5f8;
  border-color: #ffb3cc;
}

.result-item img[b-ydjoau1l4k] {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: #f8f8f8;
}

.result-info[b-ydjoau1l4k] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.result-name[b-ydjoau1l4k] {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

.result-details[b-ydjoau1l4k] {
  font-size: 0.7rem;
  color: #888;
}

.result-price[b-ydjoau1l4k] {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff6b9d;
}

/* View All */
.view-all[b-ydjoau1l4k] {
  margin-top: 1.5rem;
  text-align: center;
}

.view-all-btn[b-ydjoau1l4k] {
  background: none;
  border: 2px solid #ff6b9d;
  color: #ff6b9d;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.view-all-btn:hover[b-ydjoau1l4k] {
  background: #ff6b9d;
  color: white;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .nav-left[b-ydjoau1l4k] {
    display: none;
  }

  .logo[b-ydjoau1l4k] {
    position: static;
    transform: none;
  }

  .header-actions[b-ydjoau1l4k] {
    gap: 0.5rem;
  }

  .action-btn[b-ydjoau1l4k] {
    padding: 0.4rem;
  }

  .action-btn svg[b-ydjoau1l4k] {
    width: 18px;
    height: 18px;
  }

  .search-overlay[b-ydjoau1l4k] {
    padding-top: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .search-container[b-ydjoau1l4k] {
    max-height: calc(100vh - 40px);
    border-radius: 12px;
  }

  .results-grid[b-ydjoau1l4k] {
    grid-template-columns: 1fr;
  }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-vxqp76xmab] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vxqp76xmab] {
    flex: 1;
}

.sidebar[b-vxqp76xmab] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-vxqp76xmab] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vxqp76xmab]  a, .top-row[b-vxqp76xmab]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-vxqp76xmab]  a:hover, .top-row[b-vxqp76xmab]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vxqp76xmab]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-vxqp76xmab] {
        justify-content: space-between;
    }

    .top-row[b-vxqp76xmab]  a, .top-row[b-vxqp76xmab]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vxqp76xmab] {
        flex-direction: row;
    }

    .sidebar[b-vxqp76xmab] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vxqp76xmab] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vxqp76xmab]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vxqp76xmab], article[b-vxqp76xmab] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
