@font-face {
  font-family: Arad;
  src: url(../font/Arad-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arad", sans-serif;
  background: linear-gradient(145deg, #faf5ff 0%, #ede9fe 100%);
  color: #1e1b4b;
  overflow-x: hidden;
}
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.bg-animation .circle {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.1) 0%,
    rgba(124, 58, 237, 0.06) 100%
  );
  border-radius: 50%;
  animation: floatBg 20s infinite ease-in-out;
}
@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.05);
  }
  50% {
    transform: translate(-5%, 10%) scale(1.1);
  }
  75% {
    transform: translate(10%, -5%) scale(1.05);
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #ddd6fe;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  border-radius: 10px;
}
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 80px;
  padding: 0.5rem 2rem;
  z-index: 1000;
  box-shadow:
    0 10px 40px rgba(109, 40, 217, 0.08),
    0 0 0 1px rgba(109, 40, 217, 0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(109, 40, 217, 0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo i {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 8px;
}
.nav-menu {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.nav-menu a {
  color: #4c1d95;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
}
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-shop {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
}
.hero-shop h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-shop p {
  color: #6d28d9;
  font-size: 1.1rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(109, 40, 217, 0.12);
  border-radius: 50px;
  color: #6d28d9;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.section {
  padding: 2rem 2rem 5rem;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}
.filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  background: #fff;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.05);
  color: #5b21b6;
  font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
  transform: translateY(-2px);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 35px -12px rgba(109, 40, 217, 0.1);
  position: relative;
  cursor: pointer;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px -15px rgba(109, 40, 217, 0.25);
}
.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.product-info {
  padding: 1.5rem;
}
.product-category {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e1b4b;
}
.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #6d28d9;
  margin: 0.5rem 0;
}
.product-price small {
  font-size: 0.8rem;
  font-weight: normal;
}
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #059669;
  margin-bottom: 1rem;
}
.btn-add {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-add:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 40px rgba(109, 40, 217, 0.15);
  z-index: 2000;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  right: 0;
}
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #ede9fe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-size: 1.3rem;
  color: #1e1b4b;
}
.cart-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: #6d28d9;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #ede9fe;
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1e1b4b;
}
.cart-item-price {
  color: #6d28d9;
  font-weight: 600;
}
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-item-quantity button {
  width: 25px;
  height: 25px;
  border: none;
  background: #ede9fe;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #6d28d9;
}
.cart-item-remove {
  color: #dc2626;
  cursor: pointer;
  font-size: 1.1rem;
}
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #ede9fe;
  background: #fff;
}
.cart-total {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  color: #1e1b4b;
}
.cart-checkout {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.cart-checkout:hover {
  transform: scale(1.02);
}
.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -5px;
  background: #6d28d9;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 50%;
  font-weight: 600;
}
.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(109, 40, 217, 0.5);
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.floating-call:hover {
  transform: scale(1.1);
}
.floating-call a {
  color: #fff;
  font-size: 1.6rem;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(109, 40, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
  }
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.15);
  color: #6d28d9;
}
.scroll-top.visible {
  opacity: 1;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.notification {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #059669;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.15);
}
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.footer {
  background: #1e1b4b;
  color: #fff;
  padding: 4rem 2rem 2rem;
  margin-top: 2rem;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.footer-about p {
  color: #c4b5fd;
  line-height: 1.8;
}
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #c4b5fd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #a78bfa;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.social-icons a:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a78bfa;
}
@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0.5rem 1rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    transition: 0.3s;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.12);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-shop h1 {
    font-size: 2rem;
  }
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .filters {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
* {
  font-family: Arad;
}