@charset "UTF-8";
/* Grid Layout */
.artist-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .artist-gear-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .artist-gear-grid {
    grid-template-columns: 1fr;
  }
}

.artist-gear-item {
  background: #0a0a0a;
  border: 0.5px solid rgb(45, 45, 45);
  border-radius: 0;
  transition: border 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.artist-gear-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 60, 60, 0.2);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 5;
  transition: background-color 0.3s ease;
  pointer-events: none;
}
.artist-gear-item:hover {
  border: 0.5px solid rgb(255, 60, 60);
}
.artist-gear-item:hover::before {
  background-color: #ff3c3c;
}
.artist-gear-item .artist-gear-image {
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 100%; /* Create a square aspect ratio */
  overflow: hidden;
}
.artist-gear-item .artist-gear-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image covers the area without distortion */
  border-radius: 4px;
  transition: transform 0.5s ease-out;
}
.artist-gear-item .artist-gear-image:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}
.artist-gear-item .artist-gear-image:hover .artist-gear-image-wrapper img {
  transform: scale(1.05);
}
.artist-gear-item .artist-gear-image .artist-gear-image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease-out;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper.has-dropbox-video .artist-gear-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 1;
  transition: opacity 0.3s ease, background 0.3s ease;
  opacity: 1;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper.has-dropbox-video .artist-gear-video-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper.has-dropbox-video .artist-gear-video-overlay .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper.has-dropbox-video:hover .artist-gear-video-overlay:not(.fade-out) {
  background: rgba(0, 0, 0, 0.5);
}
.artist-gear-item .artist-gear-image .artist-gear-image-wrapper.has-dropbox-video:hover .artist-gear-video-overlay:not(.fade-out) .dashicons {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  transition: transform 0.3s ease, background 0.3s ease;
}
.artist-gear-item .artist-gear-content {
  padding: 1.5rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.artist-gear-item .artist-gear-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.artist-gear-item .artist-gear-title a {
  color: inherit;
  text-decoration: none;
}
.artist-gear-item:hover .artist-gear-title {
  color: rgb(255, 60, 60);
}
.artist-gear-item .artist-gear-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}
.artist-gear-item .artist-gear-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.artist-gear-item .artist-gear-actions {
  display: flex;
  gap: 0.5rem;
}
.artist-gear-item .artist-gear-ranking {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  pointer-events: none;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #6b7280;
}
.artist-gear-item .artist-gear-ranking.artist-gear-ranking-beginner {
  background-color: #8b5cf6;
}
.artist-gear-item .artist-gear-ranking.artist-gear-ranking-good {
  background-color: #10b981;
}
.artist-gear-item .artist-gear-ranking.artist-gear-ranking-better {
  background-color: #3b82f6;
}
.artist-gear-item .artist-gear-ranking.artist-gear-ranking-best {
  background-color: #f59e0b;
}
.artist-gear-item .artist-gear-ranking.artist-gear-ranking-no-rating {
  background-color: #6b7280;
}
.artist-gear-item .artist-gear-add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: 2rem;
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  font-size: 1rem;
  background-color: rgb(255, 60, 60);
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.artist-gear-item .artist-gear-add-to-cart-btn:hover {
  background-color: #d50000;
}
.artist-gear-item .artist-gear-add-to-cart-btn .artist-gear-cart-icon {
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  flex-shrink: 0;
}
.artist-gear-item form.cart {
  margin-top: 1rem;
}
.artist-gear-item .button {
  width: 100%;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.artist-gear-item .button.loading {
  opacity: 0.5;
  cursor: wait;
}
.artist-gear-item .button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: artist-gear-spin 0.8s infinite linear;
}
.artist-gear-item .artist-gear-success {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #10b981;
  background: #d1fae5;
  padding: 5px;
  border-radius: 3px;
  font-size: 0.9em;
}

@keyframes artist-gear-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Video Button Styles */
.artist-gear-video {
  margin: 0.5rem 0;
}

.artist-gear-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: 2rem;
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  font-size: 1rem;
  background: #DDFC74 !important;
  color: #1f2937 !important;
  border: none !important;
  cursor: pointer;
}
.artist-gear-video-btn:hover {
  background: #c5e85a !important;
  color: #1f2937 !important;
}
.artist-gear-video-btn .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

/* Modal Styles */
.artist-gear-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-gear-modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  width: 90vw;
  max-width: 1200px;
  min-height: 400px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}
@media (max-width: 768px) {
  .artist-gear-modal-content {
    padding: 20px;
  }
}
.artist-gear-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #6b7280;
}
.artist-gear-modal-close:hover {
  color: #0a0a0a;
}
.artist-gear-modal-layout {
  display: flex;
  gap: 30px;
  min-height: 400px;
}
@media (max-width: 768px) {
  .artist-gear-modal-layout {
    flex-direction: column;
  }
}
.artist-gear-modal-left {
  flex: 0 0 66.666%;
}
@media (max-width: 768px) {
  .artist-gear-modal-left {
    flex: 1;
  }
}
.artist-gear-modal-left.hidden {
  display: none;
}
.artist-gear-modal-right {
  flex: 0 0 33.333%;
}
@media (max-width: 768px) {
  .artist-gear-modal-right {
    flex: 1;
  }
}
.artist-gear-modal-right.modal-single-column {
  flex: 0 0 100%;
  width: 100%;
}

/* Modal Product Elements - Shared Styles */
#modal-product-title,
#modal-cart-product-title {
  margin: 0 0 15px 0;
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
}

#modal-product-price,
#modal-cart-product-price {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: rgb(255, 60, 60);
}

#modal-product-description,
#modal-cart-product-description {
  margin: 0 0 20px 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
  overflow-y: auto;
  max-height: 300px;
}
@media (max-width: 768px) {
  #modal-product-description,
  #modal-cart-product-description {
    max-height: 200px;
  }
}
#modal-product-description p,
#modal-cart-product-description p {
  margin-bottom: 10px;
}
#modal-product-description table,
#modal-cart-product-description table {
  width: 95%;
}

/* Modal Product Images - Shared Styles */
#modal-video-product-image,
#modal-cart-product-image {
  margin-bottom: 20px;
}
#modal-video-product-image img,
#modal-cart-product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Image in left column styling */
#modal-cart-product-image-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
#modal-cart-product-image-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Modal Video Containers - Shared Styles */
#modal-video-container,
#modal-cart-video-container {
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
#modal-video-container iframe,
#modal-video-container video,
#modal-cart-video-container iframe,
#modal-cart-video-container video {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 4px;
}

/* Modal Buy Now Buttons */
#modal-video-buy-now-btn,
#modal-cart-buy-now-btn {
  background: rgb(255, 60, 60) !important;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer;
  transition: background 0.3s ease;
}
#modal-video-buy-now-btn:hover,
#modal-cart-buy-now-btn:hover {
  background: #d50000 !important;
}

#modal-video-buy-now-btn {
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
}

#modal-cart-buy-now-btn {
  font-size: 1.1rem !important;
}

/* Responsive Modal Layout */
@media (max-width: 768px) {
  #modal-video-iframe,
  #modal-cart-video-iframe {
    min-height: 300px;
  }
}
/* Product Page Artist Ratings Styles */
.artist-gear-product-ratings {
  margin: 2rem 0;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 8px;
}
.artist-gear-product-ratings h3 {
  margin: 0 0 1.5rem 0;
  color: #1f2937;
  font-size: 1.5rem;
  text-align: center;
}

.artist-gear-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.artist-gear-rating-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  text-align: center;
}
.artist-gear-rating-item-header {
  margin-bottom: 1rem;
}
.artist-gear-rating-item-header h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.2rem;
}
.artist-gear-rating-item-video {
  margin-top: 1rem;
}
.artist-gear-rating-item-video .artist-gear-video-btn {
  width: 100%;
  margin: 0;
}

/* Rating Badge - Shared Style */
.artist-gear-rating-badge,
.artist-rating-badge {
  display: inline-block;
  background: rgb(255, 60, 60);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Specs Tab Styling */
.artist-gear-specs-content {
  padding: 1rem 0;
  line-height: 1.6;
}
.artist-gear-specs-content h1, .artist-gear-specs-content h2, .artist-gear-specs-content h3, .artist-gear-specs-content h4, .artist-gear-specs-content h5, .artist-gear-specs-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.artist-gear-specs-content h1:first-child, .artist-gear-specs-content h2:first-child, .artist-gear-specs-content h3:first-child, .artist-gear-specs-content h4:first-child, .artist-gear-specs-content h5:first-child, .artist-gear-specs-content h6:first-child {
  margin-top: 0;
}
.artist-gear-specs-content p {
  margin-bottom: 1rem;
}
.artist-gear-specs-content ul, .artist-gear-specs-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.artist-gear-specs-content li {
  margin-bottom: 0.5rem;
}
.artist-gear-specs-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.artist-gear-specs-content th, .artist-gear-specs-content td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.artist-gear-specs-content th {
  background-color: #ffffff;
  font-weight: bold;
}
.artist-gear-specs-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

/* Artist Ratings Tab Styling */
.artist-gear-ratings-tab-content {
  padding: 1rem 0;
}

.artist-rating-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}
.artist-rating-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.artist-rating-item h4 {
  margin: 0 0 1rem 0;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
}

.rating-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.rating-value {
  font-weight: 700;
}

.artist-youtube-link {
  margin-top: 1rem;
}
.artist-youtube-link a {
  display: inline-flex;
  align-items: center;
  background: #DDFC74;
  color: #1f2937;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.artist-youtube-link a:hover {
  background: #c5e85a;
  color: #1f2937;
  text-decoration: none;
}
.artist-youtube-link a:before {
  content: "▶";
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Artist Review Video Player */
.artist-review-video {
  margin-top: 1rem;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.artist-review-video iframe,
.artist-review-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/*# sourceMappingURL=artist-gear.css.map */
