.sidebar__nav-link svg {
    fill: none !important;
}
.hero__slide {
    padding: 20px 20px 20px 60px !important;
    /* padding: 20px !important */
    min-height: 326px !important;
}

.header__logo img {
    width: 180px !important;
}

.player__btn {
    height: 48px !important;
    width: 170px !important;
}

.player, .sidebar__logo, .header{
    border: none !important;
}

.album__cover a svg, .album__stat svg, .main__link svg, .product__add svg, .post__comments svg, .post__date svg, .footer__links a svg, .article__date svg  {
    fill: none !important;
}

/* ================================================================ */
.modal-small {
    max-width: 320px !important;
}

.modal-medium {
    max-width: 520px !important;
}

.modal-large {
    max-width: 820px !important;
}

.modal-extra {
    max-width: 1220px !important;
}

/* ================================================================ */
.sidebar__nav-item {
  margin-bottom: 5px !important;
 }

.sidebar__nav-link {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 6px;
  margin-right: 20px;
  font-size: 15px !important;
}

.sidebar__nav-link i {
  margin-right: 10px;
}

.sidebar__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-right: 20px;
}

.sidebar__nav-link.active {
  background-color: #198754;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  margin-right: 20px;
}

.sidebar__nav-link.active i {
  color: #fff;
}
/* ================================================================ */
/* ================================================================ */
  @media (min-width: 1200px) {
    .sidebar__nav {
      max-height: calc(100vh - 300px) !important;
    }
  }

/* ================================================================ */
#pl-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pl-logo {
    width: 180px;
    margin-bottom: 20px;
    animation: pl-pulse 1.5s infinite;
}
@keyframes pl-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.pl-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #e1ff00;
    animation: pl-spin 1s ease-in-out infinite;
}
@keyframes pl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================================================ */
.slider-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.radio-option {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.slider-radio input[type="radio"] {
  margin-right: 5px;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
  .slider-radio {
    gap: 8px;
  }
}

/* ================================================================ */

/* Main Carousel Container */
.main__carousel-wrap {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

/* Carousel Navigation Buttons */
.main__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.main__nav--prev {
    left: 0;
}

.main__nav--next {
    right: 0;
}

/* Carousel Items */
.owl-carousel {
    display: block !important;
}

.owl-stage-outer {
    overflow: hidden;
    padding: 10px 0;
}

.owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-item {
    width: 240px !important;
    margin-right: 15px !important;
    flex-shrink: 0;
}

/* Price Card Styling */
.price-card {
    background: #222227;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 10px;
    transition: transform 0.3s ease;
    width: 240px;
    flex-shrink: 0;
    display: flex; /* Add flex display */
    flex-direction: column; /* Stack children vertically */
    height: 100%; /* Take full height of parent */
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card__img {
    height: 240px;
    overflow: hidden;
}

.price-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.price-card:hover .price-card__img img {
    transform: scale(1.05);
}

.price-card__content {
    padding: 20px;
    flex-grow: 1; /* Allow content to grow and push button down */
    display: flex; /* Add flex display */
    flex-direction: column; /* Stack children vertically */
}

.price-card__title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.price-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #303030;
    font-size: 14px;
    color: #ddd;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span {
    font-weight: 500;
    color: white;
}

.price-card__btn {
    display: block;
    text-align: center;
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: auto; /* Push button to bottom */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding in width */
}

.price-card__btn:hover {
    background: #3e8e41;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ================================================================ */

a:-webkit-any-link {
    text-decoration: none !important;
}
/* ================================================================ */


/* BUTTON BASE STYLE */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: 
      color 0.15s ease-in-out,
      background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out,
      box-shadow 0.15s ease-in-out;
  }
  
  /* BUTTON VARIANTS */
  .btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
  }
  
  .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
  }
  .btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
  }
  
  .btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
  }
  .btn-success:hover {
    color: #fff !important;
    background-color: #157347;
    border-color: #146c43;
  }
  
  .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }
  .btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
  }
  
  .btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
  }
  .btn-warning:hover {
    background-color: #ffca2c;
    border-color: #ffc720;
  }
  
  .btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
  }
  .btn-info:hover {
    background-color: #31d2f2;
    border-color: #25cff2;
  }
  
  .btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  .btn-light:hover {
    background-color: #f9fafb;
    border-color: #f9fafb;
  }
  
  .btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
  }
  .btn-dark:hover {
    background-color: #1c1f23;
    border-color: #1a1e21;
  }
  
  /* BUTTON STATES */
  .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .btn:disabled {
    opacity: 0.65;
    pointer-events: none;
  }
  
  /* BUTTON SIZES */
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
  }