﻿/*
Theme Name: Norma Child
Theme URI: https://yourwebsite.com/
Description: Child Theme for Norma Project
Author: Your Name
Author URI: https://yourwebsite.com/
Template: hello-elementor
Version: 1.0
*/


/* Ensure parent header has position: relative to anchor the dropdown */
header,
.elementor-sticky--effects {
    position: relative;
    z-index: 1000;
}

body {
  overflow-x: hidden;
}



.norma-add-download-btn {
  position: relative;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.norma-add-download-btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.norma-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 135%; /* tooltip above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px 8px;
  font-size: 11px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 999;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.norma-add-download-btn:hover .norma-tooltip {
  visibility: visible;
  opacity: 1;
}
.norma-total-tracks {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.norma-tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: nowrap;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

.tooltip-wrapper:hover .norma-tooltip {
    visibility: visible;
    opacity: 1;
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}


@media (max-width: 600px) {
  .norma-track-card {
    width: 100% !important;
    padding: 16px !important;
  }

  .norma-track-card h2 {
    font-size: 18px !important;
  }

  .norma-track-card img {
    max-width: 100%;
    height: auto;
  }

  .norma-track-card .download-icon,
  .norma-track-card .favorite-icon {
    width: 22px !important;
    height: 22px !important;
  }
}

