/* ✨ RC CYBER PRODUCT STYLES - FINAL UNIFIED VERSION
   Combines the Ethereal Glass look, Fixed Modal, and Shop-Styled Related Products.
*/

/* =========================================
   1. THEME & COLOR SYSTEM (RGB UPGRADE)
   ========================================= */
   .cyber-product-wrapper {
    --theme-accent: #ff0033;
    --theme-accent-rgb: 255, 0, 51; /* RGB for red */
    --dark-bg: #0a0a14;
    --primary-glow: 0 0 20px rgba(255, 0, 51, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --blur-intensity: 20px;
  }
  
  /* Dynamic Badge Colors */
  .cyber-product-wrapper.budget-champ {
    --theme-accent: #00ff88;
    --theme-accent-rgb: 0, 255, 136;
    --primary-glow: 0 0 20px rgba(0, 255, 136, 0.6);
  }
  .cyber-product-wrapper.gaming-beast {
    --theme-accent: #ff0033;
    --theme-accent-rgb: 255, 0, 51;
    --primary-glow: 0 0 20px rgba(255, 0, 51, 0.6);
  }
  .cyber-product-wrapper.balanced-performer {
    --theme-accent: #00aaff;
    --theme-accent-rgb: 0, 170, 255;
    --primary-glow: 0 0 20px rgba(0, 170, 255, 0.6);
  }
  
  /* =========================================
     2. BASE LAYOUT
     ========================================= */
  .single-product .site-content {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
  }
  
  .cyber-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 2;
  }
  
  .product-hero-cyber {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* =========================================
     3. ETHEREAL GLASS PANELS (Gallery, Info)
     ========================================= */
  .cyber-gallery-section,
  .cyber-info-section,
  .cyber-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 20px;
    margin: 0 10px;
  }
  
  /* =========================================
     4. GALLERY & 3D TILT
     ========================================= */
  .cyber-gallery-section {
    order: 1;
    perspective: 1000px;
  }
  
  .cyber-main-image {
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: crosshair;
  }
  
  .cyber-product-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
  }
  
  .cyber-main-image:hover .cyber-product-img {
    transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(1.05);
    filter: brightness(1.1) drop-shadow(0 10px 25px var(--theme-accent));
  }
  
  /* Thumbnails */
  .cyber-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
  }
  .cyber-gallery-thumbs::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  
  .cyber-thumb {
    width: 55px;
    height: 55px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 2px;
  }
  
  .cyber-thumb:hover, .cyber-thumb.active {
    border-color: var(--theme-accent);
    background: rgba(255,255,255,0.1);
  }
  
  .cyber-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  
  /* Dynamic Badge */
  .gallery-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px var(--theme-accent);
  }
  
  /* =========================================
     5. INFO SECTION
     ========================================= */
  .cyber-info-section {
    order: 2;
  }
  
  /* Product Title */
  .product-title-cyber {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--theme-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px var(--theme-accent);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  /* Product Price */
  .product-price-cyber {
    background: none;
    border: none;
    padding: 5px 0;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: white;
    display: inline-block;
    position: relative;
    animation: glitch 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  }
  
  /* Social Sharing */
  .product-social-sharing {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
  }
  
  .product-social-sharing h4 {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  .social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .share-btn:hover {
    transform: translateY(-3px);
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: white !important;
    box-shadow: 0 0 20px var(--hover-color);
  }
  .share-btn.whatsapp { color: #25d366; --hover-color: #25d366; }
  .share-btn.facebook { color: #1877f2; --hover-color: #1877f2; }
  .share-btn.link { color: var(--theme-accent); --hover-color: var(--theme-accent); }
  
  /* Cart / Buy Button */
  .cyber-cart-section {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--glass-border);
  }
  
  .power-up-btn {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.15), rgba(255, 0, 51, 0.08));
    border: 1.5px solid var(--theme-accent);
    color: white;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
    width: 100%;
  }
  
  .power-up-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px var(--theme-accent), 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
  }
  
  /* =========================================
     6. DESCRIPTION SECTION
     ========================================= */
  .cyber-description-section {
    margin-top: 60px;
    order: 3;
  }
  
  /* Dynamic Panel Header */
  .panel-header {
    background: linear-gradient(90deg, rgba(var(--theme-accent-rgb), 0.15), transparent);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(var(--theme-accent-rgb), 0.3);
    margin-bottom: 50px;
  }
  
  .panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(var(--theme-accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.4);
  }
  
  .panel-icon i {
    color: var(--theme-accent);
    font-size: 20px;
    text-shadow: 0 0 8px var(--theme-accent);
  }
  
  .panel-header h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
  }
  
  /* Panel Background Glow Animation */
  .cyber-panel {
    position: relative;
    overflow: hidden;
    display: flow-root;
  }
  
  .cyber-panel::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at center, var(--accent-glow-bg) 0%, transparent 40%);
    animation: slowSpin 20s linear infinite;
  }
  
  .panel-header {
    position: relative;
    z-index: 1;
  }
  
  /* =========================================
     7. KEYFRAME ANIMATIONS
     ========================================= */
  @keyframes glitch {
    0% { text-shadow: none; }
    70% { text-shadow: none; }
    71% { text-shadow: 0.05em 0 0 #00ffff, -0.05em 0 0 #ff0033; }
    72% { text-shadow: none; }
    76% { text-shadow: none; }
    77% { text-shadow: -0.05em 0 0 #00ffff, 0.05em 0 0 #ff0033; }
    78% { text-shadow: none; }
    98% { text-shadow: none; }
    99% { text-shadow: 0.03em 0 0 #00ffff, -0.03em 0 0 #ff0033; }
    100% { text-shadow: none; }
  }
  
  @keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* =========================================
     8. RESPONSIVE DESIGN
     ========================================= */
  @media (max-width: 768px) {
    .gallery-badge { top: 15px; left: 15px; padding: 6px 12px; font-size: 0.7rem; }
  }
  @media (max-width: 480px) {
    .cyber-cart-section .cart { flex-direction: column; align-items: stretch; }
  }
  @media (min-width: 1024px) {
    .cyber-product-wrapper { padding: 40px 20px; }
    .product-hero-cyber { display: grid; grid-template-columns: 1fr 1fr; gap: 40px;  max-width: 1000px; margin: 0 auto; }
    .cyber-gallery-section { position: sticky; top: 40px; height: fit-content; }
    .cyber-description-section { grid-column: 1 / -1; }
    .cyber-panel { max-width: 1000px;  margin: 0 auto;}
    .product-title-cyber { font-size: 2.2rem; }
    .product-price-cyber { font-size: 2.8rem; }
  }
  
  /* =========================================
     9. UTILITIES (Hide defaults)
     ========================================= */
  .single-product .woocommerce-product-gallery,
  .single-product .summary.entry-summary,
  .single-product .related,
  .single-product .upsells,
  .woocommerce button.button,
  div[class*="floating-social"] {
    display: none !important;
  }
  
  /* =========================================
     10. TOKYO ETHEREAL GLASS HEADERS
     ========================================= */
  .entry-content p, 
  .post-content p, 
  .page-content p {
      margin: 12px 0 18px 0 !important;
      line-height: 1.6 !important;
      padding: 15px 0 !important;
      position: relative;
      color: rgba(255, 255, 255, 0.85) !important;
  }
  
  /* Standard Header Styling */
  p strong:first-child {
      background: rgba(255, 255, 255, 0.08) !important;
      color: #ffffff !important;
      padding: 10px 20px !important;
      border-radius: 12px !important;
      display: inline-block !important;
      margin: 15px 0 12px 0 !important;
      font-size: 0.9em !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-transform: uppercase !important;
      backdrop-filter: blur(20px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      box-shadow: 
          0 4px 25px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1),
          inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
      position: relative;
      overflow: hidden;
  }
  
  /* Neon Border Glow */
  p strong:first-child::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      border-radius: 12px;
      padding: 1px;
      background: linear-gradient(135deg, 
          rgba(0, 255, 255, 0.4) 0%, 
          rgba(255, 0, 255, 0.4) 50%, 
          rgba(0, 255, 255, 0.4) 100%
      );
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: xor;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      pointer-events: none;
  }
  
  /* Special Centerpiece Header (First Item) */
  .entry-content p:first-of-type strong:first-child {
      background: rgba(255, 255, 255, 0.12) !important;
      padding: 14px 28px 14px 24px !important;
      border-radius: 16px !important;
      font-size: 1em !important;
      font-weight: 600 !important;
      display: block !important;
      text-align: center !important;
      margin: 30px auto 25px auto !important;
      width: fit-content !important;
      max-width: 90% !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.15),
          inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
      animation: tokyo-glow 8s ease-in-out infinite;
  }
  
  .entry-content p:first-of-type strong:first-child::before {
      content: '💠 ';
      display: inline-block;
      margin-right: 10px;
      filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
      animation: emoji-float 3s ease-in-out infinite;
  }
  
  /* Samurai Hover Effect */
  p strong:first-child:hover {
      transform: translateY(-2px) !important;
      background: rgba(255, 255, 255, 0.15) !important;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 255, 0.15);
      transition: all 0.4s ease !important;
  }
  
  .entry-content p:first-of-type strong:first-child:hover {
      transform: translateX(-50%) translateY(-3px) scale(1.03) !important;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 255, 0.3);
      text-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
      animation: samurai-glow 2s ease-in-out infinite !important;
  }
  
  /* Animations */
  @keyframes tokyo-glow {
      0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15); }
      50% { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 15px rgba(0,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.15); }
  }
  @keyframes emoji-float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-2px) rotate(5deg); }
  }
  @keyframes samurai-glow {
      0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,0,255,0.4); }
      50% { box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 40px rgba(255,0,255,0.6); }
  }
  
  /* =========================================
     11. CYBER IMAGE MODAL - FIXED & CENTERED
     ========================================= */
  #cyber-image-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 20000 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 !important;
      margin: 0 !important;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
      pointer-events: none;
  }
  
  #cyber-image-modal.active {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease;
      pointer-events: auto;
  }
  
  /* Backdrop */
  #cyber-image-modal .modal-overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(5, 5, 10, 0.9);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 1;
  }
  
  /* Content Box */
  #cyber-image-modal .modal-content {
      position: relative;
      z-index: 10;
      width: 90vw;
      max-width: 1000px;
      height: auto;
      max-height: 90vh;
      margin: 0 !important;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  #cyber-image-modal.active .modal-content { transform: scale(1); }
  
  /* Kill Scrollbars */
  #cyber-image-modal * { scrollbar-width: none !important; -ms-overflow-style: none !important; }
  #cyber-image-modal *::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
  
  /* Image Area */
  #cyber-image-modal .modal-image-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      position: relative;
      overflow: hidden;
  }
  
  #cyber-image-modal .modal-image {
      max-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 8px;
      -webkit-user-drag: none;
      user-select: none;
  }
  
  /* Nav Arrows */
  #cyber-image-modal .modal-nav {
      z-index: 20010 !important;
      position: absolute !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      width: 50px !important;
      height: 50px !important;
      border-radius: 50% !important;
      background: rgba(0, 0, 0, 0.5) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      color: white !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  #cyber-image-modal .modal-nav:hover {
      background: var(--theme-accent, #ff0033) !important;
      border-color: #fff !important;
      box-shadow: 0 0 15px var(--theme-accent, #ff0033);
  }
  #cyber-image-modal .modal-nav.prev { left: 20px !important; }
  #cyber-image-modal .modal-nav.next { right: 20px !important; }
  
  /* Badge & Close */
  #cyber-image-modal .modal-badge {
      position: absolute;
      top: 20px; left: 20px;
      z-index: 20010 !important;
      padding: 8px 16px;
      background: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
      border-radius: 4px;
      box-shadow: 0 0 15px var(--theme-accent, #ff0033);
  }
  
  #cyber-image-modal .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      z-index: 20010 !important;
      width: 40px; height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      color: white;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  #cyber-image-modal .modal-close:hover {
      background: var(--theme-accent, #ff0033);
      border-color: #fff;
      transform: rotate(90deg);
  }
  
  /* Thumbnails */
  #cyber-image-modal .modal-thumbnails {
      padding: 15px;
      background: rgba(0,0,0,0.4);
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: center;
      gap: 10px;
  }
  #cyber-image-modal .modal-thumb {
      width: 60px; height: 60px;
      border-radius: 8px;
      border: 2px solid transparent;
      opacity: 0.6;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  #cyber-image-modal .modal-thumb.active,
  #cyber-image-modal .modal-thumb:hover {
      opacity: 1;
      border-color: var(--theme-accent, #ff0033);
      box-shadow: 0 0 10px var(--theme-accent, #ff0033);
  }
  
  /* =========================================
     12. RELATED PRODUCTS - SHOP REPLICA GRID
     ========================================= */
  .cyber-related-products {
      margin-top: 60px;
      padding: 40px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
  }
  
  .cyber-related-products::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: radial-gradient(circle, var(--theme-accent, #ff0033) 0%, transparent 80%);
      opacity: 0.5;
  }
  
  .cyber-related-header {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .cyber-glitch-text {
      font-family: 'Oswald', sans-serif;
      font-size: 1.8rem;
      font-weight: 500;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
  }
  
  .cyber-underline {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, #ff0033, #00aaff, transparent);
      margin: 12px auto;
  }
  
  /* The Grid */
  .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      width: 100%;
  }
  @media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
  
  /* The Card (Replica of Shop) */
  .cyber-related-products .cyber-product-card {
      background: rgba(15, 17, 32, 0.7);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 420px;
  }
  
  .cyber-related-products .cyber-product-card:hover {
      transform: translateY(-8px);
      border-color: var(--badge-glow);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  .cyber-related-products .product-badge {
      position: absolute; top: 12px; right: 12px;
      padding: 4px 10px;
      border-radius: 15px; font-size: 0.6rem; font-weight: 700;
      text-transform: uppercase; color: #fff; background: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 0 12px var(--badge-glow);
      z-index: 5; font-family: 'Oswald', sans-serif;
  }
  
  .cyber-related-products .product-image {
      padding: 20px; text-align: center;
      background: rgba(0, 0, 0, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 0;
  }
  .cyber-related-products .product-image img {
      width: 100%; max-width: 180px; height: 140px;
      object-fit: contain; transition: transform 0.3s ease;
  }
  .cyber-related-products .cyber-product-card:hover .product-image img {
      transform: scale(1.05);
  }
  
  .cyber-related-products .product-info {
      padding: 15px; flex-grow: 1;
      display: flex; flex-direction: column;
  }
  
  .cyber-related-products .product-title a {
      color: #fff; font-size: 1rem;
      text-decoration: none; font-family: 'Saira', sans-serif; font-weight: 500;
      line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; overflow: hidden;
      min-height: 2.8rem;
  }
  .cyber-related-products .product-title a:hover { color: var(--badge-glow); }
  
  .cyber-related-products .product-specs { margin: 8px 0; }
  .cyber-related-products .spec-item {
      background: rgba(255,255,255,0.05); padding: 3px 7px;
      border-radius: 4px; font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.7);
  }
  
  .cyber-related-products .product-price {
      color: var(--badge-glow);
      font-weight: 700; font-size: 1.2rem; margin: 10px 0;
      font-family: 'Oswald', sans-serif;
  }
  
  .cyber-related-products .product-actions { margin-top: auto; }
  
  .cyber-related-products .cyber-add-to-cart {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; background: transparent;
      border: 1.5px solid var(--badge-glow);
      color: white; padding: 10px 15px; border-radius: 8px;
      text-decoration: none; font-weight: 600;
      text-transform: uppercase; transition: all 0.3s ease;
      font-family: 'Oswald', sans-serif; font-size: 0.8rem;
  }
  .cyber-related-products .cyber-add-to-cart:hover {
      background: var(--badge-glow);
      color: #000;
      box-shadow: 0 5px 15px var(--badge-glow);
  }