/* ============================================
   CLAP4MAGIC - Modern Professional Design
   Theme: Orange & Light Yellow
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

 :root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #1e293b;
  --accent: #38bdf8;
  --success: #16a34a;
  --danger: #dc2626;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 5px 20px rgba(37, 99, 235, 0.08);
  --shadow-md: 0 10px 40px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
  margin-top: 25px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-offer {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-image {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ========== Categories Section ========== */
.categories {
  padding: 100px 0;
  background: var(--white);
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(243, 156, 18, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.category-card p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

/* ========== Products Section ========== */
.products {
  padding: 100px 0;
  background: var(--light);
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-category {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.product-price small {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-2px);
}

/* ========== Banner Section ========== */
.banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff5e6 100%);
  padding: 80px 0;
  margin: 40px 0;
}

.banner-content {
  text-align: center;
}

.banner h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
}

/* ========== CTA Section ========== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.cta h2 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta .btn {
  background: var(--white);
  color: var(--primary-dark);
  position: relative;
  z-index: 1;
}

.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== Footer ========== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-widget h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

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

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-widget ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 10px;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== Header ========== */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 28px !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .banner h2,
  .cta h2 {
    font-size: 32px;
  }

  .category-card img {
    height: 160px;
  }
}

.dashboard-card{
    border: none;
    border-radius: 15px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.dashboard-icon{
    font-size: 38px;
    margin-bottom: 8px;
}

