
/* ==========================================================================
   STANDARD GIFTS - SILICONE BRACELET COLLECTION STYLING
   Strict Scoping to #sp-collection-wrap to prevent UEESHOP CSS conflicts
   ========================================================================== */
#sp-collection-wrap {
  --sp-primary: #0A1C3E;
  --sp-primary-light: #162E61;
  --sp-accent-gold: #FDB913;
  --sp-accent-lime: #84CC16;
  --sp-accent-pink: #EC4899;
  --sp-accent-blue: #0284C7;
  --sp-text-main: #0F172A;
  --sp-text-muted: #64748B;
  --sp-border: #E2E8F0;
  --sp-bg-light: #F8FAFC;
  --sp-card-bg: #FFFFFF;
  --sp-font-head: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sp-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: var(--sp-font-body);
  color: var(--sp-text-main);
  background: var(--sp-bg-light);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#sp-collection-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
#sp-collection-wrap img { display: block; max-width: 100%; height: auto; }

/* 1. INFINITE RUNNING TEXT MARQUEE */
.sp-marquee-bar {
  background: #0A1C3E;
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(253, 185, 19, 0.25);
  box-shadow: 0 4px 15px rgba(10, 28, 62, 0.15);
}

.sp-marquee-track {
  display: inline-flex;
  animation: spMarqueeScroll 28s linear infinite;
}

.sp-marquee-track:hover {
  animation-play-state: paused;
}

.sp-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 24px;
  text-transform: uppercase;
}

.sp-marquee-item span.sp-dot {
  color: var(--sp-accent-gold);
  font-size: 16px;
}

@keyframes spMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. COLLECTION TOP HERO BANNER WITH DYNAMIC ROTATING TEXT */
.sp-hero {
  background: linear-gradient(135deg, #071329 0%, #0A1C3E 55%, #132448 100%);
  color: #FFFFFF;
  padding: 50px 44px;
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 35px -8px rgba(10, 28, 62, 0.35);
  text-align: center;
}

.sp-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(253, 185, 19, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sp-htag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.sp-htag-gold {
  background: rgba(253, 185, 19, 0.18);
  color: var(--sp-accent-gold);
  border: 1px solid rgba(253, 185, 19, 0.4);
}

.sp-hero h1 {
  font-family: var(--sp-font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-align: center;
}

/* ROTATING HEADLINE TEXT EFFECT */
.sp-rotator-wrap {
  display: inline-block;
  color: var(--sp-accent-gold);
  position: relative;
  border-bottom: 2px dashed rgba(253, 185, 19, 0.5);
  padding-bottom: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sp-hero-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.sp-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 900px;
  margin: 0 auto;
}

.sp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-stat-num {
  font-family: var(--sp-font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--sp-accent-gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.sp-stat-desc {
  font-size: 12.5px;
  color: #94A3B8;
  font-weight: 500;
}

/* 3. INTERACTIVE VISUAL CAROUSEL */
.sp-slider-sec {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 34px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.sp-sec-head {
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.sp-sec-eyebrow {
  display: inline-block !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D97706;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

.sp-sec-head h2 {
  font-family: var(--sp-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--sp-primary);
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.sp-sec-head p {
  color: var(--sp-text-muted);
  font-size: 14.5px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 820px !important;
  width: 100% !important;
  display: block !important;
}

/* CAROUSEL WRAPPER */
.sp-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #F1F5F9;
  border: 1px solid var(--sp-border);
  width: 100% !important;
}

.sp-carousel-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.sp-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  background: #FFFFFF;
}

.sp-slide-img-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-slide-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-slide:hover .sp-slide-img-box img {
  transform: scale(1.03);
}

.sp-slide-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sp-slide-badge {
  display: inline-block;
  align-self: center;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.badge-charity { background: rgba(236, 72, 153, 0.12); color: #BE185D; }
.badge-street { background: rgba(132, 204, 22, 0.15); color: #4D7C0F; }
.badge-campus { background: rgba(253, 185, 19, 0.18); color: #B45309; }
.badge-night { background: rgba(2, 132, 199, 0.14); color: #0369A1; }

.sp-slide-content h3 {
  font-family: var(--sp-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--sp-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: center;
}

.sp-slide-content p {
  color: var(--sp-text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: center;
  max-width: 520px;
}

.sp-slide-features {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin: 0 auto 24px;
  text-align: left;
}

.sp-slide-features li {
  font-size: 13px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-slide-features li i {
  color: #10B981;
  font-weight: 800;
  font-style: normal;
}

.sp-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sp-primary);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  align-self: center;
  transition: background 0.2s, transform 0.2s;
}

.sp-slide-btn:hover {
  background: #162E61;
  transform: translateY(-2px);
}

/* CAROUSEL CONTROLS */
.sp-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--sp-border);
  color: var(--sp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sp-carousel-arrow:hover {
  background: var(--sp-accent-gold);
  color: #0A1C3E;
  border-color: var(--sp-accent-gold);
}

.sp-arrow-prev { left: 14px; }
.sp-arrow-next { right: 14px; }

.sp-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sp-dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(10, 28, 62, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.sp-dot-indicator.active {
  width: 26px;
  background: var(--sp-accent-gold);
}

/* 4. 8 CRAFT TECHNIQUES GRID */
.sp-crafts-sec {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 30px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.sp-crafts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100% !important;
}

.sp-craft-card {
  background: #F8FAFC;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-craft-card:hover {
  background: #FFFFFF;
  border-color: var(--sp-accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 28, 62, 0.08);
}

.sp-craft-tag {
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D97706;
  background: rgba(253, 185, 19, 0.15);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.sp-craft-card h3 {
  font-family: var(--sp-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--sp-primary);
  margin-bottom: 4px;
  text-align: center;
}

.sp-craft-sub {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 8px;
  text-align: center;
}

.sp-craft-card p {
  font-size: 13px;
  color: var(--sp-text-muted);
  line-height: 1.55;
  text-align: center;
}

/* 5. 6-STEP PRODUCTION PROCESS */
.sp-process-sec {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 30px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100% !important;
}

.sp-process-card {
  background: #FFFFFF;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-process-card:hover {
  border-color: var(--sp-accent-gold);
  box-shadow: 0 6px 18px rgba(10, 28, 62, 0.06);
}

.sp-pnum {
  display: inline-block;
  align-self: center;
  font-family: var(--sp-font-head);
  font-size: 11.5px;
  font-weight: 800;
  color: #D97706;
  background: rgba(253, 185, 19, 0.14);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.sp-process-card h3 {
  font-family: var(--sp-font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sp-primary);
  margin-bottom: 8px;
  text-align: center;
}

.sp-process-card p {
  font-size: 13px;
  color: var(--sp-text-muted);
  line-height: 1.6;
  text-align: center;
}

/* 6. SPECIFICATIONS TABLE */
.sp-specs-sec {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 30px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.sp-table-scroll {
  overflow-x: auto;
  width: 100% !important;
}

.sp-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: center;
}

.sp-specs-table th {
  background: #F1F5F9;
  color: var(--sp-primary);
  font-family: var(--sp-font-head);
  font-weight: 700;
  padding: 13px 18px;
  border-bottom: 2px solid var(--sp-border);
  text-align: center;
}

.sp-specs-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--sp-border);
  color: #334155;
  vertical-align: middle;
  text-align: center;
}

.sp-specs-table tr:hover td {
  background: #F8FAFC;
}

.sp-row-highlight {
  font-weight: 700;
  color: var(--sp-primary);
}

/* 7. FAQ ACCORDION (Native Details/Summary) */
.sp-faq-sec {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 30px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100% !important;
}

.sp-faq-item {
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.sp-faq-item[open] {
  border-color: var(--sp-accent-gold);
  box-shadow: 0 4px 14px rgba(253, 185, 19, 0.08);
}

.sp-faq-summary {
  padding: 16px 20px;
  font-family: var(--sp-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--sp-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.sp-faq-summary::-webkit-details-marker { display: none; }

.sp-faq-summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #D97706;
  line-height: 1;
}

.sp-faq-item[open] .sp-faq-summary::after {
  content: "\2212";
}

.sp-faq-body {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 12px;
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .sp-crafts-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-slide { grid-template-columns: 1fr; }
  .sp-slide-content { padding: 30px 24px; }
}

@media (max-width: 640px) {
  .sp-hero { padding: 32px 18px; border-radius: 14px; text-align: center; }
  .sp-hero-tags { justify-content: center; }
  .sp-hero h1 { font-size: 24px; text-align: center; }
  .sp-hero-lead { text-align: center; }
  .sp-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; text-align: center; }
  .sp-stat-item { align-items: center; text-align: center; }
  .sp-slider-sec, .sp-crafts-sec, .sp-process-sec, .sp-specs-sec, .sp-faq-sec { padding: 22px 16px; border-radius: 14px; }
  .sp-crafts-grid { grid-template-columns: 1fr; }
  .sp-process-grid { grid-template-columns: 1fr; }
}
