:root {
  --accent: #ff8e53;
}

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

body {

  background: #0f172a;
  color: white;

  font-family:
    "DM Sans",
    sans-serif;
}

.back-home {
  margin-bottom: 12px; /* smaller gap */
  margin-top: 0;       /* remove excess top spacing */
}

.back-home-btn {
  background: #10b981; /* emerald green */
  color: #f9fafb;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.back-home-btn:hover {
  background: #059669; /* darker emerald */
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}


/* SECTION */

.product-slider-section {

  padding: 80px 40px;
  overflow: hidden;
}

/* HEADER */

.slider-header {

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 24px;
}

.slider-tag {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.08);

  margin-bottom: 18px;

  font-size: 14px;
}

.slider-header h2 {

  font-size: 3rem;

  font-family:
    "Syne",
    sans-serif;
  font-weight: 700;
}

.slider-header h2 span {

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */

.slider-buttons {

  display: flex;
  gap: 14px;
}

.slider-buttons button {

  width: 54px;
  height: 54px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  background:
    rgba(255,255,255,0.08);

  color: white;

  font-size: 18px;

  transition: 0.3s ease;
}

.slider-buttons button:hover {

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  transform: scale(1.08);
}

/* SLIDER */

.slider-wrapper {
  overflow: hidden;
}

.product-slider {

  display: flex;
  gap: 24px;

  overflow-x: auto;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */

.product-card {

  min-width: 320px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  overflow: hidden;

  backdrop-filter: blur(16px);

  transition:
    transform 0.4s ease,
    border 0.4s ease;
}

.product-card:hover {

  transform: translateY(-10px);

  border:
    1px solid rgba(124,58,237,0.6);
}

/* IMAGE */

.product-image {

  position: relative;
  height: 260px;
}

.product-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.5s ease;
}

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

/* BADGE */

.badge {

  position: absolute;
  top: 18px;
  left: 18px;

  padding: 8px 14px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  font-size: 13px;
  font-weight: 700;
}

/* CONTENT */

.product-content {
  padding: 24px;
}

.product-content h3 {

  font-size: 1.4rem;
  margin-bottom: 14px;
}

.product-content p {

  color: #cbd5e1;
  line-height: 1.7;

  margin-bottom: 24px;
}

/* BOTTOM */

.product-bottom {

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {

  font-size: 1.5rem;
  font-weight: 700;
}

.product-bottom button {

  border: none;

  padding: 12px 18px;

  border-radius: 14px;

  cursor: pointer;

  color: white;

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  transition: 0.3s ease;
}

.product-bottom button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .product-slider-section {
    padding: 60px 20px;
  }

  .slider-header {

    flex-direction: column;
    gap: 24px;

    align-items: flex-start;
  }

  .slider-header h2 {
    font-size: 2.2rem;
  }

  .product-card {
    min-width: 280px;
  }

}

.footer {
  margin-left: 0px;
  background: #090c15 !important;
  padding: 80px 40px 40px;
  border-top: 1px solid rgb(255 255 255 / 5%) !important;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(235 104 53 / 20%), transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent), #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff; /* fallback solid color for dark background */
  margin-bottom: 16px;
}


.footer-col p {
  color: #8a9bc0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  color: #8a9bc0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col.newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-col.newsletter input[type="email"] {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 2%);
  border: 1px solid rgb(255 255 255 / 8%);
  color: #fff;
  outline: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-col.newsletter input[type="email"]:focus {
  border-color: var(--accent);
  background: rgb(255 255 255 / 4%);
  box-shadow: 0 0 10px rgb(235 104 53 / 20%);
}

.footer-col.newsletter button {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-col.newsletter button:hover {
  background: #d45c28;
  box-shadow: 0 4px 12px rgb(235 104 53 / 30%);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 6%);
  color: #8a9bc0;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 4%);
  margin-top: 60px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #6a7a94;
  font-size: 13px;
/* =========================================
   PRODUCT SLIDER SECTION

.product-slider-section {
  width: 100%;
  padding: 100px 6%;
  background: #0f1117;
  overflow: hidden;
  position: relative;
}

/* =========================================
   HEADER

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.slider-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 18px;
}

.slider-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.slider-header h2 span {
  display: block;
  color: #8b5cf6;
  margin-top: 10px;
}

/* =========================================
   NAVIGATION BUTTONS

.slider-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-buttons button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(
    135deg,
    #7c3aed,
    #4f46e5
  );
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(124,58,237,0.25);
}

.slider-buttons button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(124,58,237,0.4);
}

/* =========================================
   SLIDER WRAPPER

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* =========================================
   PRODUCT SLIDER

.product-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* =========================================
   PRODUCT CARD

.product-card {
  min-width: 320px;
  max-width: 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: 0.45s ease;
  backdrop-filter: blur(14px);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139,92,246,0.5);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 10px 30px rgba(139,92,246,0.2);
}

/* =========================================
   PRODUCT IMAGE

.product-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

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

/* =========================================
   BADGE

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    #ec4899,
    #8b5cf6
  );
  box-shadow: 0 8px 20px rgba(236,72,153,0.3);
  letter-spacing: 0.5px;
  font-family: "DM Sans", sans-serif;
}

/* =========================================
   PRODUCT CONTENT

.product-content {
  padding: 26px;
}

.product-content h3 {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Syne", sans-serif;
  margin-bottom: 14px;
  font-weight: 700;
}

.product-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 28px;
  font-family: "DM Sans", sans-serif;
}

/* =========================================
   BOTTOM AREA

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Syne", sans-serif;
}

/* =========================================
   BUTTON

.product-bottom button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    #7c3aed,
    #4f46e5
  );
  transition: 0.35s ease;
  font-family: "DM Sans", sans-serif;
}

.product-bottom button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124,58,237,0.35);
}

/* =========================================
   GLOW EFFECT

.product-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(139,92,246,0.5),
    rgba(236,72,153,0.3),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* =========================================
   RESPONSIVE

@media (max-width: 992px) {

  .product-slider-section {
    padding: 80px 5%;
  }

  .product-card {
    min-width: 290px;
    max-width: 290px;
  }

  .product-image {
    height: 240px;
  }

}

@media (max-width: 768px) {

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-buttons {
    width: 100%;
  }

  .product-card {
    min-width: 85%;
    max-width: 85%;
  }

}

@media (max-width: 480px) {

  .product-slider-section {
    padding: 70px 20px;
  }

  .slider-buttons button {
    width: 50px;
    height: 50px;
  }

  .product-content {
    padding: 22px;
  }

  .product-content h3 {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1.3rem;
  }

  .product-bottom button {
    padding: 11px 18px;
    font-size: 14px;
  }

}