/** Shopify CDN: Minification failed

Line 1147:0 Expected percentage but found "."
Line 1323:0 Expected "}" to go with "{"

**/
:root {
  --hashy-orange: #ff7a22;
  --bg-main: var(--hashy-bg);
  --bg-card: #10131a;
  --text-main: #f5f5f5;
  --text-muted: #9ca3af;
  --border-subtle: #232733;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.hashy-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020308 55%);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

.hashy-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.hashy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.75));
  border-bottom: 1px solid rgba(35, 39, 51, 0.9);
}

.hashy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.hashy-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.hashy-logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #ff9e4f, #ff7a22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 14px;
  box-shadow: 0 0 18px rgba(255, 122, 34, 0.9);
}

.hashy-logo-text {
  color: var(--text-main);
}

.hashy-nav {
  display: flex;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hashy-nav-link {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.hashy-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9e4f, #ff7a22);
  transition: width 0.25s ease;
}

.hashy-nav-link:hover {
  color: var(--text-main);
}

.hashy-nav-link:hover::after {
  width: 100%;
}

.hashy-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hashy-cart-link {
  font-size: 12px;
  color: var(--text-muted);
}

/* Buttons */
.hashy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.hashy-btn-primary {
  background: radial-gradient(circle at top left, #ff9e4f, #ff7a22);
  color: #020617;
  box-shadow: 0 16px 30px rgba(255, 122, 34, 0.6);
}

.hashy-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 122, 34, 0.8);
}

.hashy-btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
}

.hashy-btn-ghost:hover {
  border-color: rgba(255, 122, 34, 0.9);
  color: var(--hashy-orange);
  transform: translateY(-2px);
}

/* Hero */
.hashy-hero {
  padding: 42px 0 32px;
}

.hashy-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hashy-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hashy-hero-title {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
  margin: 10px 0 10px;
  font-weight: 800;
}

.hashy-hero-title span {
  color: var(--hashy-orange);
}

.hashy-hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
}

.hashy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hashy-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hashy-hero-pills span {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 1);
  color: var(--text-muted);
}

.hashy-hero-right .hashy-hero-card {
  background: linear-gradient(145deg, #05060a, #10131a);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(35, 39, 51, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* Sections */
.hashy-section {
  padding: 26px 0 10px;
}

.hashy-section-header h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.hashy-section-header p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Tier grid */
.hashy-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hashy-tier-card {
  background: linear-gradient(145deg, #05060a, #10131a);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(35, 39, 51, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hashy-tier-card h3 {
  margin-top: 0;
  font-size: 15px;
}

.hashy-tier-card ul {
  padding-left: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hashy-tier-card--lifetime {
  box-shadow: 0 0 0 1px rgba(255, 122, 34, 0.7), 0 0 35px rgba(255, 122, 34, 0.45);
}

/* Timeline & progress */
.hashy-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
}

.hashy-timeline {
  border-left: 1px solid rgba(55, 65, 81, 0.9);
  padding-left: 16px;
  margin-top: 14px;
}

.hashy-timeline-item {
  margin-bottom: 14px;
  position: relative;
  font-size: 13px;
}

.hashy-timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hashy-orange);
  box-shadow: 0 0 12px rgba(255, 122, 34, 0.9);
}

.hashy-progress {
  margin-top: 14px;
}

.hashy-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

.hashy-progress-bar {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(31, 41, 55, 1);
  overflow: hidden;
}

.hashy-progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9e4f, #ff7a22);
  box-shadow: 0 0 10px rgba(255, 122, 34, 0.8);
  transition: width 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Collection grid */
.hashy-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hashy-collection-card {
  background: linear-gradient(145deg, #05060a, #10131a);
  border-radius: 12px;
  border: 1px solid rgba(35, 39, 51, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hashy-collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 34, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.hashy-collection-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hashy-collection-meta {
  padding: 10px 12px 12px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.hashy-collection-price {
  color: var(--hashy-orange);
}

/* Product */
.hashy-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
}

.hashy-product-price {
  font-size: 20px;
  margin: 12px 0;
  color: var(--hashy-orange);
}

.hashy-product-description {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
.hashy-footer {
  margin-top: 32px;
  border-top: 1px solid rgba(35, 39, 51, 0.9);
  padding: 22px 0 10px;
  background: rgba(5, 6, 10, 0.96);
}

.hashy-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.hashy-footer-text {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 340px;
}

.hashy-footer-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
}

.hashy-footer-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}

.hashy-footer-links a {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.hashy-footer-links a:hover {
  color: var(--hashy-orange);
}

.hashy-footer-bottom {
  border-top: 1px solid rgba(35, 39, 51, 0.9);
  padding: 8px 0 14px;
  font-size: 11px;
  color: var(--text-muted);
}

.hashy-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
}

/* Generic page wrapper */
.hashy-page-wrapper {
  padding: 30px 0;
}

.hashy-links-list {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
}

.hashy-links-list li {
  margin-bottom: 6px;
}

.hashy-links-list a {
  color: var(--hashy-orange);
}

/* Responsive */
@media (max-width: 900px) {
  .hashy-header-inner {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hashy-nav {
    display: none; /* mobile nav could be added later */
  }

  .hashy-hero-inner,
  .hashy-two-col,
  .hashy-product,
  .hashy-footer-inner {
    grid-template-columns: 1fr;
  }

  .hashy-footer-bottom-inner {
    flex-direction: column;
    gap: 4px;
  }
}


/* Reveal animation */
.hashy-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hashy-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cart styles */
.hashy-cart-form {
  margin-top: 18px;
  font-size: 13px;
}

.hashy-cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
}

.hashy-cart-table th,
.hashy-cart-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(35, 39, 51, 0.9);
  text-align: left;
}

.hashy-cart-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hashy-cart-table input[type="number"] {
  width: 60px;
  padding: 4px 6px;
  border-radius: 8px;
  border: 1px solid rgba(31, 41, 55, 1);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
}

.hashy-cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.hashy-cart-summary p {
  margin: 0;
  font-size: 14px;
}

.hashy-cart-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 700px) {
  .hashy-cart-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hashy-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .hashy-logo-img {
    height: 28px;
  }
}

.hashy-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hashy-pill-link {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 1);
  color: var(--text-muted);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hashy-pill-link:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(255, 122, 34, 0.9);
  color: var(--hashy-orange);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(255, 122, 34, 0.4);
}

.hashy-featured-image {
  margin: -4px -4px 10px;
  border-radius: 10px;
  overflow: hidden;
}

.hashy-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hashy-cart-btn {
  font-size: 11px;
}


/* Store grid */
.hashy-store-intro {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
}

.hashy-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hashy-store-card {
  background: linear-gradient(145deg, #05060a, #10131a);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(35, 39, 51, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hashy-store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 34, 0.8);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

/* Contact */
.hashy-contact p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 620px;
}

.hashy-contact-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Audio player */
.hashy-audio-player {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(31, 41, 55, 1);
  font-size: 11px;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
}

.hashy-audio-toggle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: var(--text-main);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hashy-audio-toggle:hover {
  border-color: rgba(255, 122, 34, 0.9);
  transform: translateY(-1px);
}

.hashy-audio-playing {
  background: radial-gradient(circle at top left, #ff9e4f, #ff7a22);
  border-color: transparent;
  color: #020617;
}

.hashy-audio-label {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .hashy-audio-player {
    left: 8px;
    bottom: 8px;
    right: 8px;
    justify-content: space-between;
  }
}

/* Video section */
.hashy-video-wrapper {
  max-width: 720px;
}

.hashy-video-inner {
  background: linear-gradient(145deg, #05060a, #10131a);
  border-radius: 14px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(35, 39, 51, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hashy-video-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hashy-video-frame iframe {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .hashy-video-frame iframe {
    height: 190px;
  }
}


/* Product gallery refinements */
.hashy-product {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  padding: 30px 0;
  align-items: flex-start;
}

.hashy-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.hashy-product-main-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.hashy-product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashy-product-thumb img {
  display: block;
  width: 140px;
  height: auto;
  border-radius: 10px;
  opacity: 0.9;
}

.hashy-product-thumb img:hover {
  opacity: 1;
}

.hashy-product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hashy-product-actions {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .hashy-product {
    grid-template-columns: minmax(0, 1fr);
  }
  .hashy-product-gallery {
    max-width: 100%;
  }
}


/* Clickable gallery & zoom modal */
.hashy-product-thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hashy-product-thumb img {
  display: block;
  width: 140px;
  height: auto;
  border-radius: 10px;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hashy-product-thumb:hover img {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.hashy-product-thumb.is-active img {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 128, 0, 0.9);
}

.hashy-image-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.86);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hashy-image-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.hashy-image-modal-body {
  position: relative;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
}

.hashy-image-modal-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hashy-image-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.hashy-image-modal-close:hover {
  background: rgba(0, 0, 0, 0.95);
}

.hashy-lock-scroll {
  overflow: hidden;
}


/* Hero featured slider */
.hashy-featured-image {
  border-radius: 14px;
  overflow: hidden;
}

.hashy-featured-slider {
  position: relative;
  min-height: 220px;
}

.hashy-featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hashy-featured-slide.is-active {
  opacity: 1;
}

/* Store collection grids */
.hashy-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.hashy-collection-card {
  display: flex;
  flex-direction: column;
  background: #05070d;
  border-radius: 14px;
  padding: 10px;
  text-decoration: none;
}

.hashy-collection-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hashy-collection-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hashy-collection-price {
  opacity: 0.85;
}

.hashy-featured-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.hashy-featured-subtitle {
  font-size: 15px;
  color: #d1d5db;
  margin-bottom: 14px;
}

.hashy-featured-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.hashy-featured-item {
  margin-bottom: 10px;
}

.hashy-featured-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f9fafb;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hashy-featured-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hashy-featured-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255,102,0,0.4);
}

.hashy-featured-name {
  font-size: 15px;
}

.hashy-featured-empty {
  color: #b3b3b3;
}

/* Smooth, subtle highlight on row hover */
.hashy-featured-item {
  border-radius: 12px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  padding: 6px 8px;
}

.hashy-featured-item:hover {
  background: rgba(255, 102, 0, 0.06);      /* very subtle orange tint */
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.25); /* soft glow, not massive */
  transform: translateY(-1px);
}

/* Thumbnail stays crisp with a tighter glow */
.hashy-featured-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hashy-featured-item:hover .hashy-featured-thumb {
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.55); /* clean neon pop */
  transform: scale(1.03);
}

/* Layout alignment */
.hashy-featured-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f9fafb;

  }

 /* -------------------------------------------
   HASHY FEATURED MODS – HOVER + ANIMATIONS
------------------------------------------- */

.hashy-featured-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.hashy-featured-item {
  position: relative;
  border-radius: 12px;
  padding: 6px 10px;
  overflow: hidden;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
}

/* shimmer / flare layer behind item */
.hashy-featured-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left, rgba(255,102,0,0.22), transparent 55%);
  opacity: 0;
  transform: translateX(-30%);
  pointer-events: none;
}

.hashy-featured-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f9fafb;
  width: 100%;
}

/* hover on whole row */
.hashy-featured-item:hover {
  background: rgba(255, 102, 0, 0.06);
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.35);
  transform: translateY(-2px);
}

.hashy-featured-item:hover::before {
  animation: hashy-row-shimmer 0.7s ease-out forwards;
}

.hashy-featured-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255,102,0,0.35);
  animation: hashy-thumb-idle 2.1s ease-in-out infinite; /* stronger, faster breathing */
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hashy-featured-item:hover .hashy-featured-thumb {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(255, 102, 0, 0.9);
}

/* Idle breathing glow – more obvious */
@keyframes hashy-thumb-idle {
  0% {
    box-shadow: 0 0 6px rgba(255,102,0,0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(255,102,0,0.9);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 6px rgba(255,102,0,0.35);
    transform: scale(1);
  }
/* text slide */
.hashy-featured-name {
  font-size: 15px;
  line-height: 1.3;
  display: block;
  transform: translateX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* no slide on hover anymore */
.hashy-featured-item:hover .hashy-featured-name {
  transform: translateX(0);
}

/* slide only while clicked / pressed */
.hashy-featured-item:active .hashy-featured-name {
  transform: translateX(6px);
  opacity: 1;
}

/* idle breathing glow on thumb */
@keyframes hashy-thumb-idle {
  0%   { box-shadow: 0 0 6px rgba(255,102,0,0.25); transform: scale(1); }
  50%  { box-shadow: 0 0 10px rgba(255,102,0,0.45); transform: scale(1.015); }
  100% { box-shadow: 0 0 6px rgba(255,102,0,0.25); transform: scale(1); }
}

/* === Hashy hero featured slider === */

.hashy-featured-image {
  border-radius: 16px;
  overflow: hidden;
  background: #05070d;
}

.hashy-featured-slider {
  position: relative;
  width: 100%;
  /* keep a nice aspect ratio */
  aspect-ratio: 16 / 9;
}

/* each slide */
.hashy-featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(8px) scale(1.02);
  transition:
    opacity 0.6s ease-out,
    transform 0.7s ease-out;
  pointer-events: none; /* only active slide can be clicked */
}

.hashy-featured-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* visible slide */
.hashy-featured-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  position: relative;
  pointer-events: auto;
}

/* optional: soft glow around the hero card itself */
.hashy-hero-card {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.7);
}

/* ==========================
   Projects & game dev block
   Timeline glow + layout
   ========================== */

.hashy-timeline {
  position: relative;
  margin-top: 26px;
  padding-left: 40px; /* space for line + dots */
}

/* Vertical line */
.hashy-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(255, 102, 0, 0.95),
    rgba(255, 102, 0, 0.05)
  );
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.7);
}

/* Each timeline item becomes a glowing card */
.hashy-timeline-item {
  position: relative;
  margin-bottom: 18px;
  padding: 12px 18px 12px 22px;
  border-radius: 14px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 102, 0, 0.16),
    rgba(5, 7, 12, 1)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

/* Orange dot on the line for each item */
.hashy-timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--hashy-accent);
  box-shadow:
    0 0 8px rgba(255, 102, 0, 0.9),
    0 0 20px rgba(255, 102, 0, 0.85);
}

/* Text inside items */
.hashy-timeline-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.hashy-timeline-item p {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
}

/* Hover effect: lift + stronger glow */
.hashy-timeline-item:hover,
.hashy-timeline-item:focus-within {
  transform: translateX(4px);
  border-color: rgba(255, 102, 0, 0.85);
  box-shadow:
    0 0 22px rgba(255, 102, 0, 0.75),
    0 0 40px rgba(0, 0, 0, 0.9);
  background: radial-gradient(
    circle at top left,
    rgba(255, 102, 0, 0.24),
    rgba(5, 7, 12, 1)
  );
}

/* Dot pulse on hover */
.hashy-timeline-item:hover::before,
.hashy-timeline-item:focus-within::before {
  animation: hashy-timeline-dot-pulse 0.8s ease-out forwards;
}

@keyframes hashy-timeline-dot-pulse {
  0%   { box-shadow: 0 0 8px rgba(255,102,0,0.8); }
  50%  { box-shadow: 0 0 24px 6px rgba(255,102,0,1); }
  100% { box-shadow: 0 0 12px 3px rgba(255,102,0,0.85); }
}

