/*
Theme Name:     Crosstalk Progression Child
Description:    Child Theme for Crosstalk Theme
Author:         Progression Studios
Template:       crosstalk-progression

*/

body {
  --v-primary-color: #fea500;
  --v-secondary-color: #9e300e;
}

/* Sheet Music Performance card (shared) */
.smp-grid { display: grid; }
.smp-card { background: #ffffff; border-radius: 22px; padding: 0.75rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; position: relative; }
.smp-thumb { display: block; position: relative; border-radius: 10px; overflow:hidden; width: 100%; aspect-ratio: 3 / 2; background: #111; }
.smp-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.3s ease; }
.smp-thumb:hover img { transform: scale(1.05); }
.smp-thumb-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.54); display: flex; align-items: center; justify-content: center; }
.smp-thumb .smp-thumb-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2rem; color: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.smp-title { margin: 12px 6px 10px; font-size: 24px; font-weight: 600; color: #202124; text-decoration: none; display: block; text-align: center; }
.smp-title:hover { color: var(--v-secondary-color); }
.smp-actions { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: center; padding: 6px; }

/* Selector overlay */
.smp-select-overlay { position: absolute; right: 1rem; top: 1rem; z-index: 2;}
.smp-check-input { position: absolute; opacity: 0; pointer-events: none; }
.smp-check { height: 36px; width: 36px; border-radius: 8px; border: 1px solid var(--v-primary-color); color: var(--v-primary-color); background: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s ease; }
.smp-check:hover { box-shadow: 0 0 0 3px rgba(0,0,0,0.04); }
.smp-check .smp-icon-checked { display: none; }
.smp-check .smp-icon-unchecked { display: inline-block; }
.smp-check-input:checked + .smp-check { background: var(--v-primary-color); color: #fff; }
.smp-check-input:checked + .smp-check .smp-icon-unchecked { display: none; }
.smp-check-input:checked + .smp-check .smp-icon-checked { display: inline-block; }
.smp-check:focus-visible { outline: 2px solid var(--v-secondary-color); outline-offset: 2px; }

/* Button variants */
.smp-btn { height: 44px; border-radius: 10px; display: inline-flex; gap: 10px; align-items: center; justify-content: center; text-decoration: none; padding: 0 16px; font-weight: 600; border: 2px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .02s ease; box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.06); }
.smp-btn:active { transform: translateY(1px); }
.smp-btn:focus-visible { outline: 2px solid var(--v-secondary-color); outline-offset: 2px; }
.smp-btn--solid-outline-hover { background: var(--v-primary-color); color: #fff; border-color: var(--v-primary-color); }
.smp-btn--solid-outline-hover:hover { background: transparent; color: var(--v-primary-color); }

.smp-card-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 6px;
  padding: 0;
}

.smp-stat-item {
  display: flex;
  align-items: center;
  background: rgba(254, 165, 0, 0.08);
  border: 1px solid rgba(254, 165, 0, 0.15);
  border-radius: 50px;
  padding: 6px 12px 6px 8px;
  transition: all 0.2s ease;
  min-height: 32px;
}

.smp-stat-item:hover {
  background: rgba(254, 165, 0, 0.12);
  border-color: rgba(254, 165, 0, 0.25);
  transform: translateY(-1px);
}

.smp-stat-content {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.smp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--v-primary-color);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.smp-stat-icon .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.smp-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.smp-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0;
}

.smp-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #202124;
  line-height: 1.2;
  margin: 0;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .smp-card-stats {
    gap: 8px;
    margin: 10px 4px;
  }

  .smp-stat-item {
    padding: 5px 10px 5px 6px;
    min-height: 28px;
  }
}

/* Custom styling for CF7 file upload input */
.wpcf7-form-control-wrap.file-upload {
  position: relative;
  display: inline-block;
}

.wpcf7-form-control-wrap.file-upload input[type="file"] {
  opacity: 0;
  width: 200px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
}

.wpcf7-form-control-wrap.file-upload::before {
  content: "Choose File";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 700;
  border-radius: 4px;
  pointer-events: none;
  transition: background-color 0.3s ease;
}

.wpcf7-form-control-wrap.file-upload:hover::before {
  background-color: #0056b3;
}

/* Contact Form 7 Custom Layout */
[data-wpcf7-id="155"] .wpcf7-form {
    display: grid;
    grid-template-areas:
        "name message"
        "email message"
        "subject message"
        "_ submit";
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    align-items: start;
}

[data-wpcf7-id="155"] .wpcf7-form p, [data-wpcf7-id="155"] .wpcf7-form input[type="submit"] {
  margin: 0;
}

[data-wpcf7-id="155"] .wpcf7-form textarea {
  min-height: 263px !important;
}

[data-wpcf7-id="155"] .wpcf7-form p:nth-child(2) { /* Email */
    grid-area: name;
}

[data-wpcf7-id="155"] .wpcf7-form p:nth-child(3) { /* Subject */
    grid-area: email;
}

[data-wpcf7-id="155"] .wpcf7-form p:has(textarea) { /* Message */
    grid-area: message;
}

[data-wpcf7-id="155"] .wpcf7-form p:has(input[type="submit"]) { /* Submit button */
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    grid-area: submit;
}

/* Make textarea fill the full height */
[data-wpcf7-id="155"] .wpcf7-form textarea {
    height: 100%;
    min-height: 200px;
    resize: vertical;
}

/* Mobile layout - single column */
@media (max-width: 768px) {
    [data-wpcf7-id="155"] .wpcf7-form {
        grid-template-areas:
            "name"
            "email"
            "subject"
            "message"
            "submit";
        grid-template-columns: 1fr;
    }

    [data-wpcf7-id="155"] .wpcf7-form textarea {
        min-height: 120px;
    }
}

/* Style for the file name display */
.file-name-display {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}

.luthier-page-title,
.instrument-family-page-title {
  margin-bottom: 0 !important;
}

.instrument-family-page-title #progression-studios-page-title-container {
  padding-bottom: 130px;
}

.instrument-family-page-title::before {
  display: none !important;
}

:root {
  --luthier-detail-box-padding: 1rem;
  --luthier-profile-card-info-border-color: #e2e8f0;
}

/* Luthier Profile Card */
.luthier-profile-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-radius: 0.5rem;
  padding: var(--luthier-detail-box-padding);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.luthier-profile-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.luthier-profile-card-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.luthier-profile-card .luthier-avatar img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.luthier-profile-card .luthier-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}
.luthier-profile-card .luthier-info {
  display: flex;
  align-items: center;
  height: 40px;
  background-color: white;
  border: 1px solid var(--luthier-profile-card-info-border-color);
  border-radius: 9999px;
  padding-right: 1rem;
}
.luthier-profile-card .luthier-info i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  color: #333;
  margin-right: 1rem;
  border: 1px solid var(--luthier-profile-card-info-border-color);
}

.luthier-profile-card .luthier-info a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.luthier-profile-card .luthier-info a:hover {
  color: #007bff;
}

.luthier-profile-card .hidden-info {
  cursor: pointer;
  color: #333;
  font-weight: 400;
}

.luthier-profile-card .hidden-info:hover {
  color: #0056b3;
}

/* Luthier Biography Card */
.luthier-biography-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: var(--luthier-detail-box-padding);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.luthier-biography-card .luthier-biography-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.luthier-biography-card .luthier-biography-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Layout for Luthier Detail Page */
.luthier-detail-wrapper {
  display: flex;
  gap: 30px;
}

.luthier-detail-profile {
  flex: 0 0 30%;
}

.luthier-detail-biography {
  flex: 0 0 70%;
}

@media (max-width: 768px) {
  .luthier-detail-wrapper {
    flex-direction: column;
  }

  .luthier-detail-profile,
  .luthier-detail-biography {
    flex: 0 0 100%;
  }
}

/* Musician Category Hero Styles */
.musician-category-hero {
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin-top: 20px;
}

.musician-images-container {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0; /* Light grey background */
}

.musician-image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.musician-image:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.musician-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.musician-list {
  list-style-type: none;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}

.musician-list li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .musician-list {
    columns: 1;
  }
}

#luthier-profile-page-title {
  background-color: #1a202c; /* Dark gray background */
  height: 160px; /* Equivalent to h-40 in Tailwind */
  position: relative;
  overflow: hidden;
}

#page-title-overlay-image {
  opacity: 0.5;
}

#luthier-profile-page-title h1.page-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 4px;
}

.text-center {
  text-align: center;
}

.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe,
.elementor-lightbox .elementor-video-container .elementor-video-landscape video {
  width: auto !important;
}

#elementor-hidden {
  display: none;
}

/* body:not(.elementor-editor-active) .elementor-element.e-parent[data-element_type="container"]:has(.progression-studios-elementor-video-carousel-container):not(:has(.crosstalk-carousel-item)),
body:not(.elementor-editor-active) .elementor-element.e-parent[data-element_type="container"]:has(.progression-studios-elementor-episode-container):not(:has(.progression-masonry-item)),
body:not(.elementor-editor-active) .elementor-element.e-parent[data-element_type="container"]:has(.tracks-element-grid):not(:has(.tracks-element-track-item)),
body:not(.elementor-editor-active) .elementor-element.e-parent[data-element_type="container"]:has(.events-grid):not(:has(.event-card)), {
  display: none;
} */

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.instagram-icon {
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
}

.instagram-link span {
  font-size: 1.2rem;
  font-weight: normal;
}
ul.progression-filter-button-group:before {
  content: none;
}
ul.progression-filter-button-group {
  margin-bottom: 0;
}
.elementor-social-icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 40%, #d6249f 60%, #285aeb 90%);
}

/* Quiz Archive Styles */
#progression-studios-quiz-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.progression-studios-quiz-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.progression-studios-quiz-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progression-studios-quiz-item h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5em;
}



.navigation {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #ffffff;
}

.nav-button {
  background-color: #00a699;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #008f8c;
}

.nav-button:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

.progress-bar {
  height: 4px;
  background-color: #e0e0e0;
}

.progress {
  height: 100%;
  background-color: #ff385c;
  width: 33.33%;
}

input[readonly] {
  background-color: #f7f7f7;
}


.location-filter-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 30px 0;
}

.location-filters {
  display: flex;
  gap: 15px;
  align-items: center;
}

.location-filters-select-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 6px;
  border: 1px solid hsl(214.3 31.8% 91.4%);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  overflow: hidden;
}
.luthier-filter-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reset-filters-button-mobile {
  display: none;
}

@media (max-width: 560px) {
  .location-filter-container {
    justify-content: flex-start;
  }
  .location-filters {
    flex-direction: column;
    width: 100%;
  }
  .location-filters-select-wrapper {
    width: 100%;
  }
  .location-filters-select-wrapper select {
    width: 100%;
  }
  .reset-filters-button-desktop {
    display: none !important;
  }
  .luthier-filter-actions-wrapper {
    padding-top: 1rem;
  }
}

.location-filters-select-wrapper::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: hsl(222.2 47.4% 11.2%);
  font-size: 0.875rem;
}

.location-filters-select-wrapper:has(select:disabled)::after {
  opacity: 0.5;
}

.location-filters-select-wrapper:has(select:disabled) {
  background-color: #f7f7f7;
  color: #717171;
}

.location-filters select {
  min-width: 200px;
  height: 40px;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  background-color: hsl(0 0% 100%);
  color: hsl(222.2 47.4% 11.2%);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  outline: none;
  border: none;
  appearance: none;
  background-image: none;
  font-size: 1rem;
  font-family: inherit;
  font-weight: normal;
}

button.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px !important;
  font-weight: 500;
  font-size: 0.875rem;
  height: 40px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: var(--v-primary-color) !important;
  color: white !important;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: none;
  width: 100px;
}

button.filter-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

button.filter-button:hover:not(:disabled) {
  background-color: var(--v-secondary-color) !important;
}

.reset-filters-button {
  font-size: 0.875rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  text-decoration: underline;
}

.post-list-luthier .crosstalk-index-meta-taxonomy {
  display: block;
}

.post-list-luthier.filtering-active .crosstalk-index-meta-taxonomy.country-filtered.city-filtered {
  display: none;
}

.post-list-luthier.country-filtered [data-location-type="country"] {
  display: none;
}

.post-list-luthier.city-filtered .crosstalk-index-meta-taxonomy {
  display: none;
}

@media screen and (min-width: 768px) {
  .person-profile-photo img {
    height: 410px !important;
    object-fit: cover;
    object-position: center top;
    width: 100%;
  }
  .reset-filters-button-mobile {
    display: none !important;
  }
}

.wpcf7 textarea {
  resize: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  opacity: 0.7;
}

/* become a luthier page id */
.page-id-796 #pro-title-bg {
  background-position: center bottom;
}

/* Custom CF7 Dropdown Styles */
.wpcf7-dial_code,
.wpcf7-country_select,
.wpcf7-city_select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.wpcf7-city_select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

form[action^="/become-a-luthier/#wpcf7"] {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  form[action^="/become-a-luthier/#wpcf7"] {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    column-gap: 1.5rem;
  }
  form[action^="/become-a-luthier/#wpcf7"] p:has(input[autocomplete="name"]),
  form[action^="/become-a-luthier/#wpcf7"] p:has(input[type="tel"]),
  form[action^="/become-a-luthier/#wpcf7"] p:has([data-name="biography"]),
  form[action^="/become-a-luthier/#wpcf7"] p:has(input[type="submit"]),
  form[action^="/become-a-luthier/#wpcf7"] p:has([data-name^="acceptance"]),
  form[action^="/become-a-luthier/#wpcf7"] .wpcf7-response-output {
    grid-column: span 2;
  }
}

form[action^="/become-a-luthier/#wpcf7"] p,
form[action^="/become-a-luthier/#wpcf7"] select {
  margin-bottom: 0;
}

form[action^="/become-a-luthier/#wpcf7"] input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
form[action^="/become-a-luthier/#wpcf7"] select {
  height: 46px;
}

form[action^="/become-a-luthier/#wpcf7"] input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
form[action^="/become-a-luthier/#wpcf7"] span[data-name="phone_number"] {
  width: 100% !important;
  margin-bottom: 0 !important;
}

/* Phone Input Styles */
.phone-input-group {
  display: flex;
  align-items: center;
  /* border: 1px solid #ddd; */
  border-radius: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 2px solid #fff;
}

.phone-input-group:focus-within {
  border-color: #fea500;
}

.phone-input-group input,
.phone-input-group select {
  border: none;
  background-color: #fff;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.wpcf7-form-control-wrap[data-name="phone_number"] {
  border-radius: 0 12px 12px 0 !important;
}

.wpcf7-form-control-wrap[data-name="dial_code"] {
  border-radius: 12px 0 0 12px !important;
  border-right: 1px solid #eee;
}

.wpcf7-form-control-wrap[data-name="dial_code"] select {
  font-weight: 600;
}

.phone-input-group .phone-dial-code {
  width: 90px;
  border-right: none;
  padding-right: 40px;
}
.elementor-social-icons-wrapper span.elementor-grid-item:has(.elementor-social-icon):has(a:not([href])) {
  display: none;
}

.elementor-social-icons-wrapper .elementor-grid-item {
  transition: transform 0.2s ease;
}

.elementor-social-icons-wrapper .elementor-grid-item:hover {
  transform: translateY(-4px);
}

.elementor-lightbox .elementor-video-container .elementor-video-landscape > iframe {
  width: 90vw !important;
  @media (min-width: 768px) {
    width: 50vw !important;
  }
}

.gvideo-wrapper.youtube-video.gvideo .plyr__controls {
  opacity: 0 !important;
  pointer-events: none !important;
}
.gvideo-wrapper.youtube-video.gvideo .plyr__poster {
  opacity: 0 !important;
  z-index: -1 !important;
}

.gvideo-wrapper.youtube-video.gvideo .plyr__control {
  opacity: 0 !important;
}

@media (max-width: 768px) {
  .plyr--video {
    height: 80dvh;
  }
}


.quiz-instagram-cta a {
  background-image: radial-gradient(circle at 30% 107%, #fd5949 40%, #d6249f 60%, #285aeb 90%) !important;
  color: white !important;
}

.quiz-instagram-cta a:hover {
  transform: scale(1.02);
}

.quiz-instagram-cta a > span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-instagram-cta a .elementor-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.quiz-instagram-cta a .elementor-button-text {
  font-size: 16px;
  font-weight: 600;
}

.quiz-sponsor-cta p {
  margin-bottom: 0 !important;
}

.post-type-archive-quiz .page-title-archives-progression-studios {
  margin-bottom: 0 !important;
}
.post-type-archive-quiz #content-pro {
  padding-bottom: 0 !important;
}

/* Quiz Card */
.quiz-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.quiz-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.quiz-thumbnail-container {
  position: relative;
  width: 100%;
  height: 230px;
}
.quiz-thumbnail-container img {
  height: 100% !important;
}

.quiz-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.quiz-prize {
  background: none;
  color: var(--v-primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  gap: 6px; /* subtle spacing between icon and text */
}

.quiz-prize svg {
  margin-right: 0;
  font-size: 1em;
  vertical-align: middle;
}

.quiz-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.quiz-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quiz-info {
  font-size: 14px;
  color: #484848;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  background-color: #f7f7f7;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  margin-top: auto;
}
.quiz-card-date {
  display: flex;
  flex-direction: column;
  --icon-size: 16px;
}

.quiz-card-date + .quiz-card-date {
  margin-top: 8px;
}

.quiz-card-button {
  margin-top: auto;
}

/* Quiz Date Styles */
.quiz-card-date-container {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.quiz-card-date-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px 12px;
  flex-grow: 1;
}

.quiz-card-date-icon {
  width: 18px;
  height: 18px;
  color: #666;
}

.quiz-card-date-info {
  display: flex;
  flex-direction: column;
}

.quiz-card-date-label {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

.quiz-card-date-value {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;

}

.quiz-card-date-separator {
  width: 1px;
  background: #e0e0e0;
  margin: 0 8px;
}

/* Status-specific colors */
.quiz-status-upcoming .quiz-card-date-item {
  background: #fff3e0;
}
.quiz-status-active .quiz-card-date-item {
  background: #e8f5e9;
}
.quiz-status-ended .quiz-card-date-item {
  background: #ffebee;
}

/* Quiz Button States */
.quiz-button {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 12px;
  text-decoration: none;
  background-color: var(--v-primary-color);
  color: white;
}

.quiz-button:hover:not([aria-disabled="true"]) {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
}

.quiz-button[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.quiz-button-login {
  background-color: #4a90e2;
}

.quiz-button-continue {
  background-color: #2ecc71;
}

.quiz-button-completed {
  background-color: #9b59b6;
}

.quiz-button-expired {
  background-color: #e74c3c;
}

.quiz-helper-text {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 8px 0;
}

.quiz-card.quiz-expired:not(.quiz-taken) {
  opacity: 0.75;
}

.quiz-card.quiz-taken {
  border: 2px solid #9b59b6;
}

.quiz-card.quiz-open {
  border: 2px solid #2ecc71;
}

.quiz-card.quiz-future {
  border: 2px solid #f1c40f;
}

.quiz-card-question-badge {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  background-color: #292524;
  border-radius: 9999px;
  padding: 0px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.elementor-element:has(.elementor-widget-musician-blog-posts):not(:has(.aztec-carousel-item)),
.elementor-element:has(.elementor-widget-legendary-musicians):not(:has(.legendary-musician-item)) {
  display: none;
}

body.archive.woocommerce-page .page-title-archives-progression-studios {
  margin-bottom: 40px !important;
}

body.archive.woocommerce-page .dgwt-wcas-search-wrapp {
  margin: 2rem auto;
}

body.archive.woocommerce-page .dgwt-wcas-suggestions-wrapp {
    border-radius: 30px;
    /* width: 500px !important; */
}

body.archive.woocommerce-page {
    background:#ffffff;
}


.virtuosozone-shop-sidebar {
  margin-top: 2rem !important;
}

/* Remove default list styles */
.my-subcat-list ul.wc-block-product-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-page .progression-studios-sidebar .sidebar-item {
  background: none;
  padding: 0;
  margin: 0;
}

body.woocommerce-page .shop-sidebar-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

body.woocommerce-page .shop-sidebar-item input[type="checkbox"] {
  margin-top: 0;
  border-radius: 0.25rem;
  border-color: #e5e7eb;
  padding: 0.5rem;
}

body.woocommerce-page .shop-sidebar-item .wc-block-components-checkbox__mark {
  margin-left: 3px;
  margin-top: -1px;
}

body.woocommerce-page .shop-sidebar-item .wc-block-checkbox-list__checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.woocommerce-page .shop-sidebar-item input:focus {
  border-color: var(--v-primary-color) !important;
}

body.woocommerce-page .shop-sidebar-item .wc-block-checkbox-list li {
  padding-left: 0;
}

body.woocommerce-page .shop-sidebar-item .wc-block-checkbox-list li::before {
  display: none;
}
body.woocommerce-page .sidebar-item + .sidebar-item {
  margin-top: 1rem;
}

body.woocommerce-page .shop-sidebar-item [data-block-name] {
  width: 100%;
}

body.woocommerce-page .shop-sidebar-item .wc-block-product-categories-list.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item::before {
  content: none;
}

body.woocommerce-page .shop-sidebar-item .wc-block-product-categories-list.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item {
  padding-left: 0;
}

body.woocommerce-page .shop-sidebar-item ul.wc-block-product-categories-list ul.wc-block-product-categories-list {
  margin-left: 0;
}

body.woocommerce-page .shop-sidebar-item .wc-block-product-categories-list-item__name,
body.woocommerce-page .shop-sidebar-item .wc-block-components-checkbox__label {
  font-size: 14px;
  color: #333;
}

body.woocommerce-page .shop-sidebar-item .wc-block-product-categories-list-item a:hover span,
body.woocommerce-page .shop-sidebar-item .wc-block-checkbox-list__checkbox:hover .wc-block-components-checkbox__label {
  color: var(--v-primary-color);
}

body.woocommerce-page .shop-sidebar-item .wc-block-components-filter-reset-button {
  height: 36px;
  padding: 0 1.5rem;
}

#content-pro .products li.product:not(.product-category) img {
	margin-bottom:-1px;
    border-radius: 20px;
    box-shadow: 0px 8px 35px rgba(203,209,200,0.4);
}

.custom-shop-page__featured-category .wp-block-cover {
  width: 100%;
  min-height: auto;
  padding: 0;
  aspect-ratio: 3/1;
  border-radius: 0.25rem;
}

.custom-shop-page__featured-category .wp-block-cover .wp-block-heading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.custom-shop-page__featured-category .wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-shop-page__featured-category .wp-block-cover .wp-block-cover__inner-container a {
width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-loop-product__title a {
  color: inherit;
}

.custom-shop-page__collection .wp-block-woocommerce-product-template .wp-block-woocommerce-product-image img {
	margin-bottom:-1px !important;
  border-radius: 20px !important;
  box-shadow: 0px 8px 35px rgba(203,209,200,0.4) !important;
}

.custom-shop-page__collection .wp-block-woocommerce-product-template h3.wp-block-post-title {
	font-size:24px !important;
line-height:1.3 !important;
margin-bottom:2px !important;
  color:#3e5067 !important;
}

.custom-shop-page__collection .wp-block-woocommerce-product-template h3.wp-block-post-title a {
  color: inherit;
}

#shop-main-categories-section .product-category {
  border-radius: 0.5rem;
  overflow: hidden;
}

#shop-main-categories-section .product-category img {
  height: 300px;
  object-fit: cover;
  object-position: center top;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.shop-sidebar-item--categories:not(:has([data-block-name])) {
  display: none;
}

#instrument-family-shop-header {
  position: sticky;
  top: 0;
}

#instrument-family-shop-header img {
  height: 80px !important;
  object-fit: cover;
  object-position: center top;
}

#instrument-family-shop-header li.product-category {
  margin-bottom: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

#instrument-family-shop-header li.product-category img {
  border-radius: 0 !important;
}

.instrument-family-page-title #progression-studios-page-title-container {
  padding-bottom: 0px !important;
  padding-top: 0px !important;
  height: 400px !important;
}

.instrument-family-page-title #page-title-overlay-image {
  height: 400px !important;
}

@media (max-width: 768px) {
  .progression-studios-projects-feaured-image {
    margin-bottom: 0px !important;
  }
  .instrument-family-page-title #page-title-overlay-image {
    height: 300px !important;
  }
  .instrument-family-page-title #progression-studios-page-title-container {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    height: 300px !important;
  }
  #instrument-family-shop-header li.product-category {
    width: 48% !important;
  }
}

#content-pro:has(#archive-luthiers-container),
#content-pro:has(#prize-quizzes-container) {
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
.logo-text a {
  color: white !important;
}
#shop-main-categories-section ul,
#instrument-family-shop-header ul {
  margin: 0 !important;
}
#shop-main-categories-section ul.products a,
#instrument-family-shop-container ul.products a {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
}
#shop-main-categories-section ul.products a > *,
#instrument-family-shop-container ul.products a > * {
  grid-area: 1 / 1;
  margin: 0 !important;
  padding: 0 !important;
}
#shop-main-categories-section ul.products h2.woocommerce-loop-category__title,
#instrument-family-shop-container ul.products h2.woocommerce-loop-category__title {
  padding: 0;
  line-height: 1;
  position: relative;
  inset: 0;
  font-weight: 600 !important;
}

ul.progression-filter-button-group li.pro-checked {
  background: var(--v-primary-color) !important;
}

.tax-instrument-family .page-title-archives-progression-studios,
.page-template-user-profile-template .page-title-archives-progression-studios {
  margin-bottom: 0;
}
.page-template-user-profile-template #content-pro {
  padding-top: 0px !important;
}

#musician-manager-link a {
  color: var(--e-a-color-txt-muted);
  text-decoration: underline;
}
#musician-manager-link a:hover {
  color: var(--e-a-color-txt-hover);
}
#luthier-biography p:last-of-type {
  margin-bottom: 0;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100% !important;
}
.wpcf7-form .wpcf7-submit {
  background: var(--v-primary-color) !important;
  width: auto !important;
}


.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img{
  height: 400px !important;
  object-fit: contain;
  object-position: center;
}
.elementor-widget-video .elementor-custom-embed-image-overlay img {
  width: auto !important;
  height: auto !important;
  aspect-ratio: auto !important;
}
.progression-studios-elementor-scrolling-text h4 + h4 {
  margin-left: 18px;
}
.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a {
  font-weight: 700 !important;
}
.shop-sidebar-item--categories hr {
  margin-top: 0px !important;
  margin-bottom: 0.875rem !important;
}
.shop-sidebar-item:has(.wc-blocks-filter-wrapper[hidden]) {
  display: none;
}

body.wp-singular.page #progression-studios-page-title-page-builder + #content-pro {
  padding-top: 50px;
}
.wpcf7-list-item input[name^="acceptance"] {
  transform: translateY(1px);
}
.musician-bio-scroll-gradient .e-con-inner > div > div {
  position: relative;
}
.musician-bio-scroll-gradient .e-con-inner > div > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(#f7f7f6, rgba(247, 247, 246, 0.001));
}
.musician-bio-scroll-gradient .e-con-inner > div > div::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(rgba(247, 247, 246, 0.001), #f7f7f6);
}
.musician-bio-scroll-gradient__scroller span {
  display: block;
  overflow-y: scroll;
  width: 100%;
  max-height: 200px;
  padding: 15px 0;
}
.sm-hero-subinfo p {
  margin: 0;
}
.sm-hero-subinfo a {
  color: white;
  text-decoration: underline !important;
}
.sm-hero-subinfo span.stat {
  color: white;
}
