/* =========================
   ROOT SECTION
========================= */

.autoplay-fullscreen-section {
  width: 100%;
  height: 120vh;
  display: flex;
  flex-direction: column;
  background: black;
  overflow: hidden;
  box-shadow: 0px 0px 20px #000
}

/* =========================
   VIDEO AREA (90vh)
========================= */

.autoplay-video-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  padding-top: 2rem; 
  background: black;
  overflow: hidden;
}

.autoplay-video-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 2rem);
  overflow: hidden;
}

.autoplay-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%) scale(1.15);
  pointer-events: none;
}


.autoplay-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   HERO IMAGE TITLE
========================= */

.autoplay-video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.autoplay-hero-image {
  width: clamp(260px, 40vw, 540px);
  max-width: 90%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* =========================
   CONTENT AREA (40vh)
========================= */

.autoplay-content-wrapper {
  height: 40vh;
  min-height: 40vh;
  background: black;
  color: white;
  display: flex;
  align-items: stretch;
  padding: 0.5rem 3rem 4rem; 
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.autoplay-content-left {
  max-width: 640px;
}

.autoplay-content-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: rgb(204, 200, 193);
  /* margin-bottom: 1.4rem; */
  margin-top: 1rem;
  line-height: 1;
}

.autoplay-content-text {
  color: #b5b5b5;
  font-size: 1.3rem;
  text-indent: 0;
  /* line-height: 1.65; */
  max-width: 560px;
}

.autoplay-content-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.autoplay-learn-more-btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.75rem 2.25rem;
  background: #add;
  color: black;
  border: 1px solid #add;
  align-self: flex-end;
  transition: background 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}

.autoplay-learn-more-btn:hover {
  background: black;
  color: white;
  border-color: white;
}

/* =========================
   RESPONSIVE (MOBILE SAFE)
========================= */

@media (max-width: 768px) {
  .autoplay-fullscreen-section {
    height: auto;
    min-height: 100vh;
  }
  .autoplay-content-title {
    padding-left: 0px;
  }

  .autoplay-content-text {
    margin: 0px;
    font-size: 1rem;
  }

  .autoplay-video-wrapper {
    height: 70vh;
    padding-top: 2rem;
  }

  .autoplay-video-inner {
    height: calc(100% - 2.5rem);
  }

  .autoplay-content-wrapper {
    height: auto;
    min-height: 30vh;
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .autoplay-content-right {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
  }

  .autoplay-video-embed {
    width: 160vw;
    height: 90vw;
  }

  .autoplay-hero-image {
    width: clamp(220px, 70vw, 420px);
  }

  .autoplay-learn-more-btn {
    align-self: flex-end;
    margin-top: 1rem;
  }
}

/* ---------- Root ---------- */
.featured-products {
  /* background: #000; */
  padding: 60px 40px;
  color: #c9c9c9;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.featured-videos {
  padding: 60px 40px;
  color: #c9c9c9;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.fp-header h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 1rem;
}

/* ---------- Arrows ---------- */
.fp-arrows {
  display: flex;
  gap: 12px;
}

.fp-arrow {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fp-arrow:hover {
  color: #fff;
}

/* ---------- Track ---------- */
.fp-track-wrapper {
  position: relative;
}

.fp-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.fp-track::-webkit-scrollbar {
  display: none;
}

/* ---------- Card ---------- */
.fp-card {
  flex: 0 0 420px; 
  background: #2f3034;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.fp-card:hover {
  border-color: rgba(186, 235, 255, 0.5);
  box-shadow:
    0 5px 5px rgba(58, 207, 249, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.fp-image {
  width: 100%;
  height: 240px;
  background: #2f3034;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}

/* ---------- Content ---------- */
.fp-content {
  padding: 20px;
}

.fp-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.fp-type {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 12px;
}

.fp-description {
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ---------- Discover ---------- */
.fp-discover {
  font-size: 14px;
  letter-spacing: 1px;
  color: #add;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fp-discover span {
  transition: transform 0.2s ease;
}

.fp-discover:hover span {
  transform: translateX(4px);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .featured-products,.featured-videos {
    padding: 30px 20px;
  }

  .fp-header h2 {
    font-size: 22px;
  }

  .fp-card {
    flex: 0 0 300px;
  }

  .fp-image {
    height: 200px;
  }
}

/* ---------- Skeleton ---------- */
.fp-skeleton {
  position: relative;
  overflow: hidden;
}

.fp-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-image {
  width: 100%;
  height: 240px;
  background: #111;
}

.skeleton-text {
  height: 14px;
  background: #111;
  margin-bottom: 10px;
}

.skeleton-text.title {
  height: 20px;
  width: 70%;
}

.skeleton-text.type {
  width: 40%;
}

.skeleton-text.desc {
  width: 100%;
}

.skeleton-text.desc.short {
  width: 85%;
}

.skeleton-button {
  height: 14px;
  width: 90px;
  background: #111;
  margin-top: 20px;
}

/* Mobile height */
@media (max-width: 768px) {
  .skeleton-image {
    height: 200px;
  }
}

/* BTN */
.jcs-home-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Button */
.jcs-home-btn {
  padding: 0.95rem 2.25rem;
  background-color: #3a3b40; /* subtle lift from page */
  color: #c2c2c2;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: block;
  margin: 0 auto;

  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}


/* Hover */
.jcs-home-btn:hover {
  background: #add;
  color: #000;
}

/* Active */
.jcs-home-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(170, 221, 221, 0.4);
}

/* ===============================
   FEATURED GRID SECTION
================================ */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  gap: 0.8rem;
  padding: 0.5rem;
}

/* Left column (stacked cards) */
.featured-grid__left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
}

/* Shared card styles */
.featured-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
   box-shadow: 0px 0px 25px #141414
}

/* Dark overlay focused on bottom 20% */
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0; /* keep full size to position gradient */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,   /* top 80% is fully transparent */
    rgba(0, 0, 0, 0.6) 100%  /* bottom 20% is semi-dark */
  );
  pointer-events: none; /* ensures overlay doesn't block clicks */
}

/* Content */
.featured-card__content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
}

.featured-card h2 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}

.featured-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #add;
}

/* ===============================
   RESPONSIVE STACKING
================================ */
@media (max-width: 1024px) {
  .featured-grid {
    display: grid;
    grid-template-columns: 1fr;      
    grid-template-rows: 2fr 1fr;      
    height: 100vh;
    gap: 0.5rem;
  }

  /* Left column stacked cards */
  .featured-grid__left {
    display: grid;
    grid-template-rows: 1fr 1fr;      /* each stacked card = half of left column */
    gap: 0.5rem;
  }

  /* Right card fills remaining space */
  .featured-grid > .synthesizers {
    height: 100%;                     /* takes the 1fr portion */
  }

  /* Stretch stacked cards */
  .featured-grid__left .featured-card {
    height: 100%;
  }
  .featured-card h2 {
    margin-left: 0;
    padding-left: 0;
}

}


/* ===============================
   BACKGROUND IMAGES
================================ */
.accessories {
  background-image: url("/EmailNewsletter/Images/Kick-GoaPatch.gif");
}

.cases {
  background-image: url("/EmailNewsletter/Images/6Ux84HP_Black.jpg");
}

.synthesizers {
  background-image: url("/Modules/QuadADSR/img4.jpg");
}

/* ===== Product Highlights Section ===== */
.product-highlights {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.product-highlights .highlight {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-highlights .highlight-image {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.product-highlights .highlight-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-highlights h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.product-highlights p {
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
}

.product-highlights--dark .highlight-light ul {
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-highlights {
    flex-direction: column;
  }

  .product-highlights .highlight {
    min-height: 100vh;
    text-align: center;
    padding: 0rem 0rem;
  }
  .product-highlights h2 {
  padding-left: 0%;
  padding: 1rem 1rem;
}
 .product-highlights p{
  padding: 1rem 1rem;
 }
  
  
}

/* Product highlight Dark Theme */
.product-highlights--dark .highlight-light {
  background-color: #2f3034;
  color: #e6e6e6;
  box-shadow: 0px 0px 5px #141414
}

.product-highlights--dark .highlight-dark {
  background-color: #c9c9c9;
  color: #000;
}

/* Product highlight Light Theme */
.product-highlights--light .highlight-light {
  background-color: #fff;
  color: #000;
}

.product-highlights--light .highlight-dark {
  background-color: #2f3034;
  color: #e6e6e6;
  box-shadow: 0px 0px 5px #141414
}
