@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap");

:root {
  --accent: #6366f1;
  --dark: #0f172a;
  --glass: rgba(255, 255, 255, 0.8);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fcfcfd;

  scroll-behavior: smooth;
}

.navbar-custom {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.text-accent {
  color: var(--accent);
}
.dot {
  color: var(--accent);
  font-size: 2rem;
  line-height: 0;
}

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  margin: 0 10px;
  font-size: 0.95rem;
}

.cart-icon-box {
  background: var(--dark);
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 50px;
  position: relative;
}

.cart-count {
  font-size: 10px;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
}

.hero-wrapper {
  background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 100%);
  padding-top: 80px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--dark);
}

 .gradient-text {
  color: #6366f1; /* Fallback */
  background: linear-gradient(90deg, #6366f1, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-new {
  background: #eef2ff;
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-para {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin-top: 20px;
}

.hero-img-container {
  position: relative;
  padding: 20px;
}

.hero-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: 0.5s;
}

.hero-img-container:hover .hero-img {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-price-tag {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  padding: 15px 25px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.btn-dark-modern {
  background: var(--dark);
  color: white;
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-dark-modern:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: white;
}
.modern-footer {
  background-color: #0f172a;
  padding-top: 80px;
  color: #f8fafc;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.newsletter-box {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-box input {
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: white;
  width: 100%;
  outline: none;
}

.newsletter-box button {
  background: var(--accent);
  border: none;
  color: white;
  width: 45px;
  height: 40px;
  border-radius: 8px;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #4f46e5;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.payment-icons {
  font-size: 1.8rem;
  color: #94a3b8;
  display: flex;
  gap: 15px;
}

:root {
  --text-indigo: #6366f1;
  --dark-blue: #0f172a;
  --slate: #64748b;
}

.section-header h2 {
  font-size: 1.8rem;
  letter-spacing: -1px;
  color: var(--dark-blue);
}

.text-indigo {
  color: var(--text-indigo);
}

.modern-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.category-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--dark-blue);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-actions {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
}

.modern-card:hover .floating-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: white;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--slate);
  transition: 0.3s;
}

.action-btn:hover {
  background: var(--text-indigo);
  color: white;
}

.img-wrap {
  background: #f8fafc;
  border-radius: 18px;
  height: 220px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s ease;
}

.modern-card:hover .img-wrap img {
  transform: scale(1.1) rotate(2deg);
}

.rating-box {
  background: #fffbeb;
  color: #b45309;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 8px;
}

.desc {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.card-footer-custom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-indigo);
}

.currency {
  color: var(--text-indigo);
  font-weight: 700;
}

.add-cart-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--dark-blue);
  color: white;
  border: none;
  transition: 0.3s;
}

.add-cart-btn:hover {
  background: var(--text-indigo);
  border-radius: 50%;
  transform: rotate(90deg);
}
