    /* ---------- HOME HERO + TICKER LAYOUT TOKENS ---------- */
    .vyxra-home {
      --home-ticker-h: 56px;
      --home-hero-offset: 80px;
    }

    @media (min-width: 783px) {
      .logged-in .vyxra-home {
        --home-hero-offset: 112px;
      }
    }

    /* Full-bleed hero + ticker inside WP content wrapper */
    .vyxra-home .hero,
    .vyxra-home .ticker-wrap {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    /* ---------- HERO SLIDER (FULLSCREEN) ---------- */
    .hero {
      position: relative;
      width: 100%;
      height: calc(100svh - var(--home-hero-offset, 80px) - var(--home-ticker-h, 56px));
      min-height: 480px;
      overflow: hidden;
      background: #000;
    }

    /* Each slide absolute positioned */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s cubic-bezier(.4,0,.2,1);
      pointer-events: none;
      overflow: hidden;
    }
    .slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Glowing orb behind model */
    .slide-glow {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: min(58vw, 640px);
      height: min(58vw, 640px);
      max-width: 640px;
      max-height: 640px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active .slide-glow { opacity: 0.6; }

    /* Theme‑specific glow colours + pulse animation */
    .slide[data-theme="purple"] .slide-glow {
      background: radial-gradient(circle at center, #7B2FFF 0%, #3a0090 50%, transparent 100%);
      animation: glowPulse 5s ease-in-out infinite;
    }
    .slide[data-theme="blue"] .slide-glow {
      background: radial-gradient(circle at center, #0066FF 0%, #002080 50%, transparent 100%);
      animation: glowPulse 5s ease-in-out infinite 0.5s;
    }
    .slide[data-theme="yellow"] .slide-glow {
      background: radial-gradient(circle at center, #FFE600 0%, #6a5a00 50%, transparent 100%);
      animation: glowPulse 5s ease-in-out infinite 1s;
    }

    @keyframes glowPulse {
      0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
      50% { transform: translateY(-50%) scale(1.06); opacity: 0.75; }
    }

    /* Model zone — avatar flush to the right edge */
.slide-model-zone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 96%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(.34,1.2,.64,1);
}
.slide.active .slide-model-zone {
  transform: translateY(0);
}
    .avatar-img {
      height: 100%;
      width: auto;
      max-width: none;
      object-fit: contain;
      object-position: right bottom;
      transform: translateY(8px);
      transition: transform 1.2s cubic-bezier(.34,1.2,.64,1);
    }
    .slide.active .avatar-img { transform: translateY(0); }

    /* Hero text content (left side on desktop) – now larger */
    .slide-content {
      position: absolute;
      left: 0; right: 0;
      bottom: 96px;
      padding: 0 22px;
      z-index: 10;
    }

    

    .slide-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;          /* larger label */
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .6s .3s, transform .6s .3s;
    }
    .slide.active .slide-label { opacity: 1; transform: none; }

    .slide[data-theme="purple"] .slide-label { color: var(--purple); }
    .slide[data-theme="blue"]   .slide-label { color: var(--blue); }
    .slide[data-theme="yellow"] .slide-label { color: var(--yellow); }

    /* Main heading – dramatically larger */
    .slide-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(68px, 18vw, 130px);  /* bigger than before */
      line-height: 0.85;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .6s .45s, transform .6s .45s;
    }
    .slide.active .slide-heading { opacity: 1; transform: none; }

    .slide[data-theme="purple"] .slide-heading .accent { color: var(--purple); }
    .slide[data-theme="blue"]   .slide-heading .accent { color: var(--blue); }
    .slide[data-theme="yellow"] .slide-heading .accent { color: var(--yellow); }

    /* Body text larger */
    .slide-body {
      font-size: 12.5px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.7);
      max-width: 280px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .6s .55s, transform .6s .55s;
    }
    .slide.active .slide-body { opacity: 1; transform: none; }
    .slide-body .aw { font-weight: 600; }
    .slide[data-theme="purple"] .slide-body .aw { color: var(--purple); }
    .slide[data-theme="blue"]   .slide-body .aw { color: var(--blue); }
    .slide[data-theme="yellow"] .slide-body .aw { color: var(--yellow); }

    /* SHOP NOW button – larger and more prominent */
    .btn-shop {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 28px;       /* bigger padding */
      border-radius: 60px;
      border: 1.5px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.04);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 15px;          /* bigger font */
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(10px);
      transition-property: opacity, transform, border-color, background, box-shadow;
      transition-duration: .6s, .6s, .3s, .3s, .3s;
      transition-delay: .65s, .65s, 0s, 0s, 0s;
    }
    .slide.active .btn-shop { opacity: 1; transform: none; }
    .btn-shop:active { transform: scale(0.97); }

    .slide[data-theme="purple"] .btn-shop { border-color: rgba(123,47,255,0.7); }
    .slide[data-theme="blue"]   .btn-shop { border-color: rgba(0,102,255,0.7); }
    .slide[data-theme="yellow"] .btn-shop { border-color: rgba(255,230,0,0.7); }

/*     .btn-shop:hover { background: rgba(255,255,255,0.09); } */
    .slide[data-theme="purple"] .btn-shop:hover { 
		box-shadow: 0 0 28px var(--pglow);
		border-color: var(--purple);
		background-color: var(--purple);
		}
    .slide[data-theme="blue"]   .btn-shop:hover { 
		box-shadow: 0 0 28px var(--bglow);
		border-color: var(--blue);
		background-color: var(--blue);
	}
    .slide[data-theme="yellow"] .btn-shop:hover { 
		box-shadow: 0 0 28px var(--yglow);
		border-color: var(--yellow);
		background-color: var(--yellow); 
	}
	.slide[data-theme] .btn-shop:hover .btn-arrow{
/* 		background-color: black; */
		transition: 0.5s ease-in-out;
	}
    .btn-arrow {
      width: 30px; height: 30px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .slide[data-theme="purple"] .btn-arrow { background: var(--purple); }
    .slide[data-theme="blue"]   .btn-arrow { background: var(--blue); }
    .slide[data-theme="yellow"] .btn-arrow { background: var(--yellow); }
/*     .slide[data-theme="yellow"] .btn-arrow svg { stroke: #444; } */

    .btn-arrow svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; }
    /* Slide counter (progress bar + numbers) */
    .slide-counter {
      position: absolute;
      bottom: 30px; left: 22px; right: 22px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ctr-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      min-width: 22px;
    }
    .ctr-track {
      flex: 1;
      display: flex;
      gap: 4px;
    }
    .ctr-seg {
      height: 3px;
      border-radius: 3px;
      flex: 1;
      background: rgba(255,255,255,0.15);
      transition: flex .5s cubic-bezier(.4,0,.2,1), background .4s;
      overflow: hidden;
      position: relative;
    }
    .ctr-seg.active { flex: 2.2; }
    .ctr-fill {
      position: absolute;
      inset: 0;
      width: 0%;
      border-radius: 3px;
      transition: width 0s;
    }
    .ctr-seg.active .ctr-fill {
      width: 100%;
      transition: width 5s linear;
    }
    [data-active-theme="purple"] .ctr-fill { background: var(--purple); }
    [data-active-theme="blue"]   .ctr-fill { background: var(--blue); }
    [data-active-theme="yellow"] .ctr-fill { background: var(--yellow); }

    /* ---------- INFINITE SCROLLING BRAND TICKER ---------- */
    .ticker-wrap {
      background: #080808;
      border-top: 1px solid #1c1c1c;
      border-bottom: 1px solid #1c1c1c;
      padding: 18px 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
    }
    /* fade edges for smoother infinite effect */
    .ticker-wrap::before, .ticker-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }
    .ticker-wrap::before { left: 0; background: linear-gradient(to right, #080808, transparent); }
    .ticker-wrap::after  { right: 0; background: linear-gradient(to left, #080808, transparent); }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: tickerMove 28s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }

    @keyframes tickerMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .tick-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 32px;
      border-right: 1px solid #1e1e1e;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      white-space: nowrap;
      transition: color .2s;
    }
    .tick-item svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .tick-item.c-purple { color: var(--purple); }
    .tick-item.c-red    { color: #ff3040; }
    .tick-item.c-yellow { color: var(--yellow); }
    .tick-item.c-blue   { color: var(--blue); }

  
    /* ---------- PRODUCTS SECTION (YOUR PRODUCTS) ---------- */
    .products-section {
      background: #f2f2f2;
      padding: 28px 14px 36px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .prod-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
      display: block;
      color: inherit;
    }
    .prod-card:active { transform: scale(0.97); }
    .prod-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

    .prod-img-area {
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px;
      position: relative;
      overflow: hidden;
      background: #f8f8f8;   /* fallback background */
    }
    /* Each product card can have a custom background colour via data-color */
	/* ==========================================================================
   PRODUCT IMAGE AREA BACKGROUND COLORS
   ========================================================================== */
	.product_tag-color-white  .prod-img-area { background: #ffffff; }
	.product_tag-color-red    .prod-img-area { background: #300000; }
	.product_tag-color-black  .prod-img-area { background: #f0eaea; }
	.product_tag-color-purple .prod-img-area { background: #faf9fb; }
	.product_tag-color-yellow .prod-img-area { background: #141100; }
	.product_tag-color-blue   .prod-img-area { background: #00060f; }
	.product_tag-color-pink   .prod-img-area { background: #200010; }
	.product_tag-color-gold   .prod-img-area { background: #090500; }
	.product_tag-color-orange .prod-img-area { background: #1c0b00; }

	/* ==========================================================================
	   PRODUCT TITLE / NAME COLORS
	   ========================================================================== */
	.product_tag-color-white  .prod-name { color: #fff; }
	.product_tag-color-red    .prod-name { color: #ff3333; }
	.product_tag-color-black  .prod-name { color: #111; }
	.product_tag-color-purple .prod-name { color: var(--purple); }
	.product_tag-color-yellow .prod-name { color: #ffee00; }
	.product_tag-color-blue   .prod-name { color: var(--blue); }
	.product_tag-color-pink   .prod-name { color: #ff007f; }
	.product_tag-color-gold   .prod-name { color: #b06000; }
	.product_tag-color-orange .prod-name { color: #ff6600; }

	/* ==========================================================================
	   "VIEW CART" LINK STYLE MATRIX (added_to_cart)
	   ========================================================================== */
	.product_tag-color-white  a.added_to_cart { border-color: #fff; color: #fff; }
	.product_tag-color-red    a.added_to_cart { border-color: #ff3333; color: #ff3333; }
	.product_tag-color-black  a.added_to_cart { border-color: #111; color: #111; }
	.product_tag-color-purple a.added_to_cart { border-color: var(--purple); color: var(--purple); }
	.product_tag-color-yellow a.added_to_cart { border-color: #ffee00; color: #ffee00; }
	.product_tag-color-blue   a.added_to_cart { border-color: var(--blue); color: var(--blue); }
	.product_tag-color-pink   a.added_to_cart { border-color: #ff007f; color: #ff007f; }
	.product_tag-color-gold   a.added_to_cart { border-color: #b06000; color: #b06000; }
	.product_tag-color-orange a.added_to_cart { border-color: #ff6600; color: #ff6600; }

	/* ==========================================================================
   	"VIEW CART" LINK HOVER INTERACTION MATRIX
   	========================================================================== */
	.product_tag-color-white  a.added_to_cart:hover { background: #fff; color: #000; }
	.product_tag-color-red    a.added_to_cart:hover { background: #ff3333; color: #fff; }
	.product_tag-color-black  a.added_to_cart:hover { background: #111; color: #fff; }
	.product_tag-color-purple a.added_to_cart:hover { background: var(--purple); color: #fff; }
	.product_tag-color-yellow a.added_to_cart:hover { background: #ffee00; color: #000; }
	.product_tag-color-blue   a.added_to_cart:hover { background: var(--blue); color: #fff; }
	.product_tag-color-pink   a.added_to_cart:hover { background: #ff007f; color: #fff; }
	.product_tag-color-gold   a.added_to_cart:hover { background: #b06000; color: #fff; }
	.product_tag-color-orange a.added_to_cart:hover { background: #ff6600; color: #fff; }

    /* Product image (replace with your own) */
    
    .prod-img {
      width: 300%;
      max-width: 200px;
      position: relative;
      z-index: 1;
      border-radius: 12px;
    }

    .prod-info {
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }
    .prod-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }


    .prod-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 1.5px solid #ddd;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .2s, border-color .2s;
    }
    .prod-btn svg { width: 12px; height: 12px; stroke: #444; stroke-width: 2.2; }
    .prod-card:hover .prod-btn { background: #111; border-color: #111; }
    .prod-card:hover .prod-btn svg { stroke: #fff; }

	/* 1. Base Product Container Properties */
.woocommerce ul.products li.product.type-product {
  position: relative;
  border: 1px solid transparent; /* Prevents layout shifting when the border color loads */
  border-radius: 12px;           /* Adjust this to match your product card design */
  
  /* Clears any conflicting native hover transitions */
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* 2. Triggers the 1-Second Sequence On Hover */
.woocommerce ul.products li.product.type-product:hover {
  /* Runs the custom "bounceAndFade" sequence below for exactly 1 second */
  animation: bounceAndFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

/* 3. The 1-Second Animation Timeline Matrix */
@keyframes bounceAndFade {
  0% {
    transform: translateY(0);
    border-color: transparent;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  
  /* Peak Move (At 35% of the timeline - roughly 0.35s): Max height, border, and glow */
  35% {
    transform: translateY(-6px);
    border-color: var(--active-accent, #9d4edd);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(157, 78, 221, 0.1);
  }
  
  /* Return Journey (From 35% to 100%): Smoothly glides back down and cleans up styles */
  100% {
    transform: translateY(0);
    border-color: transparent;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

.woocommerce ul.products li.product a .woocommerce-loop-product__title{
	font-size: 1.3rem !important ;
}
.woocommerce ul.products li.product .price .amount{
	font-size: 1rem !important;
	color: gray;
}


	/* ---------- WOOCOMMERCE VIEW CART LINK STYLING ---------- */
	a.added_to_cart {
    	display: inline-block;
		display: none;
    	margin-top: 6px;
    	font-family: 'Barlow Condensed', sans-serif;
    	font-size: 11px;
    	font-weight: 700;
    	letter-spacing: 0.05em;
    	text-transform: uppercase;
    	text-decoration: none;
    	padding: 4px 10px;
    	border-radius: 20px;
    	background: transparent;
    	border: 1px solid #888888;
    	color: #888888;
    	transition: all 0.25s ease;
    	width: 100%;
    	text-align: center;
    	box-sizing: border-box;
	}

/* Hover effect for the View Cart link */
a.added_to_cart:hover {
    background: #111;
    color: #fff !important;
    box-shadow: 0 0 10px var(--active-accent, #9d4edd);
}



    /* ---------- LIVE / VIDEO SECTION ---------- */
    
    .vid-card {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #111;
    /* Match your screenshot's soft shadow */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#liveVideo {
    /* Slight brightness boost for the "Frequency" look */
    filter: brightness(0.9) contrast(1.1);
}

.vid-overlay {
    /* Bottom-heavy gradient to ensure text visibility */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
}


    .live-section {
      background: var(--black);
      padding: 48px 20px 52px;
    }
    .live-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 12px;
    }
    .live-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 10vw, 62px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .live-heading .live-it {
      color: var(--purple);
      font-style: italic;
      display: block;
    }
    .live-body {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      margin-bottom: 28px;
      max-width: 340px;
    }
    .vid-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #050505;
      aspect-ratio: 16 / 10;
      cursor: pointer;
    }
    .vid-scene {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .vid-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 3;
      padding: 20px 22px;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }
    .vid-from {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .vid-city {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 12vw, 70px);
      color: var(--purple);
      line-height: 0.9;
      letter-spacing: 0.02em;
      font-style: italic;
    }
    .vid-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-top: 5px;
    }
    .vid-play {
      position: absolute;
      top: 50%; right: 20px;
      transform: translateY(-50%);
      z-index: 4;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.35);
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(10px);
      transition: transform .2s, background .2s;
    }
    .vid-play:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
    .vid-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }

    .vid-nav {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      margin-top: 16px;
    }
    .vid-nav button {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .15s;
    }
    .vid-nav button:active { transform: scale(0.93); }
    .vid-prev {
      background: transparent;
      border: 1.5px solid var(--gray3);
    }
    .vid-prev svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); stroke-width: 2; }
    .vid-next {
      background: var(--purple);
      border: 1.5px solid var(--purple);
    }
    .vid-next svg { width: 14px; height: 14px; stroke: white; stroke-width: 2; }
    

/* Container to handle the "Right Side" alignment */
.view-more-container {
  display: flex;
  justify-content: flex-end; /* Pushes button to the right */
  padding: 40px 6% 20px 0;      /* Top padding and slight right margin */
  width: 100%;
  max-width: 1400px;         /* Match your grid's max-width if applicable */
  margin: 0 auto;            /* Centers the container itself */
}

/* Google Font for nice typography */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

.section-title-wrapper {
  text-align: left;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.best-seller-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #000000, #000000, #000000);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
  margin: 0;
  animation: gradientShift 3s ease infinite;
}

.title-accent {
  font-size: 1.2em;
  display: inline-block;
  animation: pulse 2s ease infinite;
  color: #c084fc;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.title-subtext {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #a1a1aa;
  margin-top: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* --- Your Animated Button Logic --- */
.button {
  --dark: #181818;
  --light: var(--purple); /* Updated to use your theme variable */
  --active: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  background-color: transparent;
  border: none;
}

.button:hover {
  --active: 1;
}

.icon_cont {
  overflow: clip;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Animates from small dot to full icon circle */
  width: calc(var(--active) * 1.5rem + (1 - var(--active)) * 0.5rem);
  height: calc(var(--active) * 1.5rem + (1 - var(--active)) * 0.5rem);
  background-color: hsla(0, 0%, 85%, var(--active));
  border: 1px solid var(--light);
  border-radius: 9999px;
  transition: all 0.5s ease-in-out;
}

.icon {
  font-size: 0.75rem;
  color: var(--dark);
  line-height: 1rem;
  /* Slides icon in from the left on hover */
  transform: translateX(calc(-1.5rem * (1 - var(--active))));
  transition: transform 0.5s ease-in-out;
}

.text_button {
  position: relative;
  display: inline-block;
  padding-block: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; /* Matches your site font */
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
}

/* The Animated Underline */
.text_button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc((1 - var(--active)) * 100%);
  height: 1px;
  background-color: var(--light);
  border-radius: 9999px;
  transition: width 0.5s ease-in-out;
}


/* ==========================================================================
   RESPONSIVE — DESKTOP  (≥ 1025px)
   Grid-based hero: copy left, avatar flush right.
   ========================================================================== */
@media (min-width: 1025px) {
  .slide {
    display: grid;
    /* grid-template-columns: minmax(320px, 42%) minmax(0, 58%); */
    align-items: end;
    padding: 0 0 0px;
    box-sizing: border-box;
  }

  .slide-glow {
    right: 0;
    top: 52%;
    width: min(52vw, 640px);
    height: min(52vw, 640px);
  }

  .slide-model-zone {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .slide-content {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 0 10px clamp(22px, 3vw, 56px);
    align-self: end;
  }

  .avatar-img {
    object-position: right bottom;
  }
}


/* ==========================================================================
   RESPONSIVE — TABLET  (769px – 1024px)
   Side-by-side grid tuned for mid-width viewports.
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero {
    height: calc(100svh - var(--home-hero-offset, 80px) - var(--home-ticker-h, 56px));
    min-height: 440px;
  }

  .slide {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    align-items: end;
    padding: 8px 0 36px;
    box-sizing: border-box;
  }

  .slide-glow {
    right: 0;
    top: 50%;
    width: min(56vw, 460px);
    height: min(56vw, 460px);
    max-width: 460px;
    max-height: 460px;
  }

  .slide-model-zone {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: calc(100svh - var(--home-hero-offset, 80px) - var(--home-ticker-h, 56px) - 110px);
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
  }

  .slide.active .slide-model-zone { transform: none; }

  .avatar-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }

  .slide.active .avatar-img { transform: none; }

  .slide-content {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 12px 4px clamp(20px, 3vw, 36px);
    align-self: end;
    z-index: 10;
  }

  .slide-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
  }

  .slide-heading {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.88;
    margin-bottom: 10px;
  }

  .slide-body {
    font-size: 12px;
    line-height: 1.65;
    max-width: 240px;
    margin-bottom: 18px;
  }

  .btn-shop {
    padding: 13px 22px;
    font-size: 13px;
  }

  .slide-counter {
    bottom: 16px;
    left: clamp(20px, 3vw, 36px);
    right: 24px;
  }

  .ticker-wrap {
    margin-top: 0;
    padding: 16px 0;
  }

  .tick-item {
    font-size: 11px;
    padding: 0 22px;
    gap: 8px;
  }

  /* Products */
  .products-section { padding: 24px 16px 32px; }
  .products-grid    { gap: 12px; }
  .prod-name        { font-size: 13px; }

  /* Live */
  .live-section { padding: 44px 28px 48px; }
  .live-body    { max-width: 300px; }
  .live-heading { font-size: clamp(40px, 9vw, 58px); }

  /* View more */
  .view-more-container { padding: 36px 4% 16px 0; }
}
 
 
/* ==========================================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   Hero switches to stacked column: avatar top, text bottom.
   Positioning model:
     .slide          → position:absolute on .hero, becomes flex column
     .slide-glow     → stays position:absolute (background layer)
     .slide-model-zone → switches to position:relative (enters flex flow)
     .slide-content  → switches to position:relative (enters flex flow)
     .slide-counter  → stays position:absolute (pinned to slide bottom)
   ========================================================================== */
@media (max-width: 768px) {
 
  /* ——— HERO ——— */
  .hero {
    height: calc(100svh - var(--home-hero-offset, 80px) - var(--home-ticker-h, 56px));
    min-height: 420px;
    overflow: hidden;
  }
 
  /* Slide fills hero and lays children vertically */
  .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;    /* clear fixed nav bar */
    padding-bottom: 0px !important; /* clear slide counter */
    box-sizing: border-box;
    overflow: hidden;
  }
 
  /* 1 ─ Avatar zone (top) */
  .slide-model-zone {
    position: relative;   /* enters flex flow */
    right: auto;
    bottom: auto;
    width: 100%;
    height: 42svh;
    min-height: 180px;
    max-height: 320px;
    order: 1;
    flex-shrink: 0;
    overflow: visible;
    align-items: flex-end;
    justify-content: center;
	border-radius: 50px;
  }
  .slide.active .slide-model-zone { transform: none; }
 
  .avatar-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
	border-radius: 50px;
    transform: translateY(6px);   /* subtle entry retained */
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 80%);
  }
  .slide.active .avatar-img { transform: translateY(0) scale(1.4); }
 
  /* 2 ─ Text zone (bottom) */
  .slide-content {
    position: relative;   /* enters flex flow */
    bottom: auto;
    left: auto;
    right: auto;
    order: 2;
    width: 100%;
    padding: 14px 24px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 10;
	margin-top: -50px;
  }
 
  .slide-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
	margin-left: -20%;
  }
  .slide-heading {
    font-size: clamp(50px, 13vw, 70px);
    line-height: 0.88;
    margin-bottom: 10px;
  }
	.slide-heading br:nth-of-type(2){
		display: none;
	}
	
	.slide-heading span:nth-of-type(2)::before {
    	content: " " !important;
    	display: inline !important;
  	}
	
  .slide-body {
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .btn-shop {
    padding: 14px 24px;
    font-size: 14px;
    gap: 10px;
    margin: 0 auto;
    /* Ensure minimum 44px touch target height */
    min-height: 44px;
  }
	.slide.active .btn-shop{
		transform: translatey(20px);
	}
 
  /* 3 ─ Glow: disable large blurred orbs on mobile (runtime: blur(70px)×3 → ~31–46fps) */
  .slide-glow,
  .slide.active .slide-glow,
  .slide[data-theme="purple"] .slide-glow,
  .slide[data-theme="blue"]   .slide-glow,
  .slide[data-theme="yellow"] .slide-glow {
    display: none !important;
    filter: none !important;
    animation: none !important;
    opacity: 0 !important;
  }
 
  /* 4 ─ Slide counter (pinned, absolute) */
  .slide-counter {
    bottom: 16px;
    left: 20px;
    right: 20px;
  }
  .ctr-num { font-size: 11px; }
 
  /* ——— TICKER ——— */
  .ticker-wrap { padding: 14px 0; margin-top: 0; }
  .tick-item {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 0 20px;
    gap: 8px;
  }
  .tick-item svg {
    width: 15px;
    height: 15px;
  }
 
  /* ——— PRODUCTS ——— */
  .products-section { padding: 18px 10px 28px; }
  .products-grid    { gap: 8px; }
  .prod-img-area    { padding: 16px; }
  .prod-name        { font-size: 12px; letter-spacing: 0.05em; }
  .prod-info        { padding: 10px 12px; gap: 4px; }
  .prod-btn         { width: 28px; height: 28px; }
  .prod-btn svg     { width: 11px; height: 11px; }
 
  /* ——— LIVE / VIDEO ——— */
  .live-section   { padding: 36px 20px 40px; }
  .live-label     { font-size: 11px; }
  .live-heading   { font-size: clamp(36px, 10vw, 52px); margin-bottom: 6px; }
  .live-body      { font-size: 13px; max-width: 100%; margin-bottom: 22px; }
  .vid-city       { font-size: clamp(34px, 10vw, 50px); }
  .vid-overlay    { padding: 14px 16px; }
  .vid-play       { width: 48px; height: 48px; right: 14px; }
  .vid-play svg   { width: 18px; height: 18px; }
  .vid-nav        { margin-top: 12px; gap: 8px; }
  .vid-nav button { width: 38px; height: 38px; }
 
  /* ——— VIEW MORE ——— */
  .view-more-container {
    justify-content: center;
    padding: 28px 20px 14px;
  }
	
	.woocommerce ul.products.columns-4{
		grid-template-columns: repeat(2,1fr) !important;
		gap: 16px !important;
	}
	
	.avatar-purple {
    content: url('/wp-content/uploads/vyxra-assets/1.%20Website/Mobile/1.%20Home%20Page/Avatars/Purple_Avatar.webp');
  }
  .avatar-blue {
    content: url('/wp-content/uploads/vyxra-assets/1.%20Website/Mobile/1.%20Home%20Page/Avatars/Blue_Avatar.webp');
  }
  .avatar-yellow {
    content: url('/wp-content/uploads/vyxra-assets/1.%20Website/Mobile/1.%20Home%20Page/Avatars/Yellow_Avatar.webp');
  }
}

 
/* ==========================================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   Tighter spacing; single-column product grid.
   ========================================================================== */
@media (max-width: 480px) {
 
  .hero { min-height: 400px; }
 
  .slide {
    padding-top: 52px;
    padding-bottom: 56px;
  }
 
	.slide-content{
		margin-top: -20%;
	}
	
  .slide-model-zone {
    height: 38svh;
    min-height: 160px;
    max-height: 260px;
  }
 
  .slide-heading { font-size: clamp(40px, 12vw, 56px); }
 
  .slide-body {
    font-size: 12px;
    max-width: 240px;
    margin-bottom: 16px;
  }
 
  .btn-shop {
    padding: 12px 20px;
    font-size: 13px;
    gap: 8px;
  }
  .btn-arrow { width: 26px; height: 26px; }
  .btn-arrow svg { width: 12px; height: 12px; }
 
  /* Stack products to a single column on very small screens */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
 
  .ticker-wrap { padding: 11px 0; margin-top: 0px; }
  .tick-item   { padding: 0 16px; font-size: 10.5px; }
 
  .live-section { padding: 28px 16px 32px; }
  .live-heading { font-size: clamp(32px, 9vw, 46px); }
  .vid-city     { font-size: clamp(28px, 9vw, 42px); }
 
  .slide-counter { bottom: 12px; left: 16px; right: 16px; }
  .ctr-num       { font-size: 10px; }
}
 
/*  add to cart icon*/
/* 1. Prepares the individual product card container position matrix */
ul.products li.product {
  position: relative !important;
}

/* 2. Style & Transform the Add to Cart Button into an Icon */
.woocommerce .button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  position: absolute !important;
  right: 12px !important;    /* Distances the icon from the left border edge */
  bottom: 85px !important;  /* Adjust this to pull it higher onto your image layout */
  z-index: 99 !important;
  /* Creates a compact floating bubble look */
  width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: #000000 !important; /* White circle background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  
  /* Centers the icon perfectly inside the circle */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* Hides the default "Add to Cart" text string entirely */
  text-indent: -9999px !important;
  overflow: hidden !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
}

/* 3. Injects a modern Shopping Cart icon right inside the button circle */
ul.products li.product .button.add_to_cart_button::after {
  /* Using standard Dashicons (built into WordPress core) */
  content: "\f174" !important; 
	font-weight: 900;
  font-family: dashicons !important;
  text-indent: 0 !important; /* Keeps the icon visible */
  font-size: 18px !important;
  color: #ffffff !important; /* Black cart color */
  position: static !important;
  display: block !important;
}

/* 4. Interactive Hover & Click Animations */
.woocommerce .button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
  background-color: rgb(123, 47, 255) !important; /* Turns purple on hover */
  transform: scale(1.05) !important;
}

ul.products li.product .button.add_to_cart_button:hover::before {
  color: #ffffff !important; /* Cart turns white on hover */
}

/* 5. Smooth loading/added spinner adjustment fix */
ul.products li.product .button.loading::after {
  top: 12px !important;
  right: 12px !important;
}


/* Bigger product images */
.woocommerce ul.products li.product a img {

    width:100%;
    height:120px !important;
    object-fit:contain;

}


@media(max-width:768px){

.woocommerce ul.products li.product a img {

    height:250px;
    max-width: 100% !important;

}

}

.woocommerce .button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
.woocommerce .button.product_type_variable.add_to_cart_button.ajax_add_to_cart {
  display: none !important;
}

/* ---------- COMMUNITY SLIDER — full width + half-card peek ---------- */
.vyxra-home .slider-container {
    width: 100%;
    max-width: 100%;
    padding: 50px 0 50px clamp(10px, 1.8vw, 24px);
    box-sizing: border-box;
}

.vyxra-home .slider-wrapper {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.vyxra-home .slider-track {
    padding-left: 0;
    padding-right: 0;
}

.vyxra-home {
    --cards-visible: 5.5;
}

@media (max-width: 1200px) {
    .vyxra-home {
        --cards-visible: 4.5;
    }
}

@media (max-width: 900px) {
    .vyxra-home {
        --cards-visible: 3.5;
    }

    .vyxra-home .slider-container {
        padding-left: clamp(10px, 2.5vw, 18px);
    }
}

@media (max-width: 700px) {
    .vyxra-home {
        --cards-visible: 2.35;
    }
}

@media (max-width: 600px) {
    .vyxra-home {
        --cards-visible: 1.45;
    }
}
