.products-show_top {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.prodcts-show_top__left {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.prodcts-show_top__left img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    max-width: 300px;
}
  
.prodcts-show_top__right {
    width: 50%;
}


  
    
  .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}
  .prodcts-show_top__right--record_btn img {


    height: 15px;
    width: 15px;
  

}

.prodcts-show_top__right--record_btn svg.action-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.prodcts-show_top__right--record_btn svg.action-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  
    
    
    
  
        
  
  .prodcts-show_top__right--tag {
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      font-size: 0.8rem;
      color: white;
      border-radius: 3px;
      background-color: #a3a3a3;
      display: inline-block;
      margin-bottom: 5px;
  }

  .prodcts-show_top__right--brand {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.prodcts-show_top__right--brand:hover {
    color: #7ba88f;
    text-decoration: underline;
}

.products-scent__notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 365px) {
    .products-scent__notes {
      flex-direction: column;
      align-items: center;
    }
  }

.products-scent--notes_type img {
    width: 70px;
    height:70px;
    object-fit: cover;
}

.products-scent--notes_state {
    font-size: 0.9rem;
    margin: 0;
}

.products-scent--notes_name {
    text-align: center;
    margin: 0;
}

.detail-value__url {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.gallery-images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.gallery-image-item {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 5px;
  background-color: #fff;
}

.gallery-image-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.gallery-image-item .btn {
  margin-top: 5px;
  width: 100%;
}

.current-main-image {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.current-main-image img {
  display: block;
  margin: 0 auto 10px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.gallery-item {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 5px;
  background-color: #fff;
}

.gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.gallery-item .btn {
  margin-top: 5px;
  width: 100%;
}

/* 画像アップロードとプレビュー用のスタイル */
.image-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.main-image-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .main-image-container {
    flex-direction: row;
    align-items: center;
  }
  
  .current-main-image,
  .main-image-placeholder {
    flex: 0 0 40%;
  }
  
  .main-image-upload {
    flex: 0 0 60%;
  }
}

.current-main-image {
  padding: 1rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.main-image-placeholder {
  padding: 2rem;
  background-color: #f0f0f0;
  border: 1px dashed #ccc;
  border-radius: 5px;
  text-align: center;
  color: #777;
}

.image-preview {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}

.preview-img {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin: 0 auto;
}

.gallery-preview {
  margin-top: 1rem;
}

.gallery-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.gallery-preview-item {
  width: 150px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}

.gallery-images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.gallery-image-item {
  position: relative;
  width: 150px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  transition: transform 0.2s ease;
}

.gallery-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.image-actions {
  display: flex;
  justify-content: center;
}

.image-actions .btn {
  width: 100%;
}

.gallery-img {
  max-width: 100%;
  border-radius: 3px;
}

.no-gallery-images {
  padding: 2rem;
  background-color: #f0f0f0;
  border: 1px dashed #ccc;
  border-radius: 5px;
  text-align: center;
  color: #777;
}

/* フォームアクション */
.form-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* ギャラリースライダー用のCSS */
.gallery-slider-container {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.gallery-slider {
  position: relative;
  width: 100%;
  padding: 8px 0 0;
  box-sizing: border-box;
  max-width: 100%;
}

.gallery-slider-wrapper {
  width: 100%;
  overflow: visible;
  max-width: 100%;
}

.gallery-slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
  gap: 10px;
}

.gallery-slider-item {
  width: 100%;
  max-width: 100%;
}

.gallery-slider-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.gallery-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.gallery-slider-counter {
  min-width: 58px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  color: #343434;
}

.gallery-slider-prev,
.gallery-slider-next {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #b9c5bd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #4b5f4f;
}

.gallery-slider-prev.disabled,
.gallery-slider-next.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (min-width: 769px) {
  .gallery-slider-controls {
    display: none;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .gallery-slider-wrapper {
    overflow: hidden;
  }

  .gallery-slider-track {
    display: flex;
    grid-template-columns: none;
  }

  .gallery-slider-item {
    flex: 0 0 auto;
    width: calc((100% - 10px) / 2);
    max-width: 150px;
  }

  .gallery-slider-counter {
    min-width: auto;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #111;
  }
}

/* Action Buttons */

.record-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.survey-option-card.selected {
    border-color: #7ba88f !important;
    background-color: #f0f8f4;
}

.survey-option-card:hover {
    background-color: #f9f9f9;
}

.survey-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.survey-results-item {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.survey-pie-layout {
  display: grid;
  grid-template-columns: 150px minmax(130px, 180px);
  column-gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
}

.survey-pie-layout .pie-chart {
  justify-self: center;
}

.survey-pie-legend {
  width: 100%;
}

@media (max-width: 768px) {
  .survey-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .survey-results-item {
    max-width: none;
  }

  .survey-pie-layout {
    grid-template-columns: 1fr;
    row-gap: 8px;
    max-width: 100%;
    justify-items: center;
  }

  .survey-pie-layout .pie-chart {
    width: 96px !important;
    height: 96px !important;
  }

  .survey-pie-layout .pie-chart > div {
    font-size: 0.65em !important;
    padding: 3px 6px !important;
  }

  .survey-pie-legend {
    width: 100%;
    text-align: center;
  }

  .survey-pie-legend-item {
    margin-bottom: 3px !important;
  }

  .survey-pie-legend-item span {
    font-size: 0.75em !important;
  }

  .survey-pie-legend-item {
    justify-content: center;
  }
}


.prodcts-show_top__right--records {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.prodcts-show_top__right--records form,
.prodcts-show_top__right--records > a {
  display: block;
  width: 100%;
  margin: 0;
}

.prodcts-show_top__right--records > * {
  min-width: 0;
}

.record-btn {
  width: 100%;
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  gap: 6px;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.record-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.record-btn:active {
  transform: translateY(0) scale(0.96);
}

.prodcts-show_top__right--record_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}

.record-btn:hover .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}

.prodcts-show_top__right--record_btn_icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
}

.prodcts-show_top__right--record_btn-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #495057;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.prodcts-show_top__right--record_btn-text .count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #212529;
}

/* 欲しい Button */
.record-btn[action-type="want"]:hover .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}


/* 持ってる Button */
.record-btn[action-type="have"]:hover .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}


/* 気になる Button */
.record-btn[action-type="interested"]:hover .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}


/* Active states (for when user has already selected the record) */
.record-btn.active[action-type="want"] .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}
.record-btn.active[action-type="have"] .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}
.record-btn.active[action-type="interested"] .prodcts-show_top__right--record_btn_icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-base);
  transition: all 0.2s ease;
}

/* Update the layout styles for action buttons container to match modern single line layout */
.product-detail-actions {
  margin: 1.5rem 0;
}

/* SVG Hover and Active States */
.record-btn[action-type="want"]:hover svg.action-icon,
.record-btn.active[action-type="want"] svg.action-icon {
  stroke: var(--color-primary-dark);
  fill: var(--color-primary-dark);
}

.record-btn[action-type="have"]:hover svg.action-icon,
.record-btn.active[action-type="have"] svg.action-icon {
  stroke: var(--color-text-main);
  fill: var(--color-text-main);
}

.record-btn[action-type="interested"]:hover svg.action-icon,
.record-btn.active[action-type="interested"] svg.action-icon {
  stroke: var(--color-accent);
  fill: var(--color-accent);
}

@media (max-width: 768px) {
  .product-detail-status-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .product-detail-tags {
    margin-top: 2px !important;
    margin-bottom: 0 !important;
    gap: 6px !important;
  }

  .product-detail-actions {
    margin-top: 4px !important;
    margin-bottom: 2px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .prodcts-show_top__right--records {
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 360px !important;
    padding: 10px 8px !important;
    border-radius: 0 !important;
    gap: 4px !important;
    justify-content: center !important;
  }

  .record-btn {
    padding: 6px 2px !important;
    gap: 4px !important;
    align-items: center !important;
  }

  .prodcts-show_top__right--record_btn {
    gap: 4px !important;
  }

  .prodcts-show_top__right--record_btn_icon {
    width: 38px !important;
    height: 38px !important;
  }

  .product-detail-tab-card {
    margin-top: 4px !important;
  }
}

/* Have icon: white inside before click, black filled after click */
.record-btn[action-type="have"] .have-check-icon {
  width: 20px;
  height: 20px;
}

/* Product detail action buttons: force exact centering in each column */
#product-action-buttons.prodcts-show_top__right--records {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  justify-items: center !important;
}

#product-action-buttons.prodcts-show_top__right--records > form,
#product-action-buttons.prodcts-show_top__right--records > a {
  width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
}

#product-action-buttons.prodcts-show_top__right--records .record-btn {
  width: 100% !important;
  max-width: 120px;
  margin: 0 auto !important;
  align-items: center !important;
}

#product-action-buttons.prodcts-show_top__right--records .prodcts-show_top__right--record_btn {
  align-items: center !important;
}

.record-btn[action-type="have"] .have-check-icon__circle {
  fill: #ffffff;
  stroke: #1f2521;
  stroke-width: 2;
}

.record-btn[action-type="have"] .have-check-icon__mark {
  fill: none;
  stroke: #1f2521;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-btn[action-type="have"]:hover .have-check-icon__circle,
.record-btn.active[action-type="have"] .have-check-icon__circle {
  fill: #1f2521;
  stroke: #1f2521;
}

.record-btn[action-type="have"]:hover .have-check-icon__mark,
.record-btn.active[action-type="have"] .have-check-icon__mark {
  stroke: #ffffff;
}

.have-survey-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  padding: 10px;
  box-sizing: border-box;
}

.have-survey-modal.is-open {
  display: block;
}

.have-survey-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
}

.have-survey-modal__content {
  position: relative;
  background: #ffffff;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  max-width: 100%;
  overflow-y: auto;
  margin: 32px auto;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.have-survey-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.have-survey-modal .detail-label {
  margin-top: 0;
  margin-bottom: 14px;
  padding-right: 40px;
}

.product-detail-info-section .product-detail-reviews-inline .detail-area,
.product-detail-info-section .product-detail-basic-info .detail-area,
.product-detail-info-section .product-detail-notes .detail-area,
.product-detail-info-section .product-detail-basic-info .detail-area-center {
  border-left: 0;
  border: 1px solid #dce7df;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fdfefd;
  box-shadow: inset 0 0 0 1px rgba(236, 244, 238, 0.65);
}

.product-detail-info-section .detail-label {
  display: block;
  margin-bottom: 8px;
}

.product-description-inline {
  display: block;
  max-width: 100%;
  padding: 0;
  line-height: 1.9;
  color: #2d3a32;
}

.survey-question--hidden {
  display: none;
}

.survey-wizard-header {
  margin-bottom: 12px;
}

.survey-wizard-progress {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.survey-question-step {
  margin-bottom: 16px;
}

.survey-question-item {
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.survey-question-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.survey-question-title {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.survey-scale-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.survey-scale-label {
  font-size: 0.9em;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: nowrap;
  min-width: 40px;
  text-align: center;
}

/* ── Slider Track (input) ── */
.survey-slider-track-wrapper {
  flex-grow: 1;
  position: relative;
}

.survey-slider-track {
  display: flex;
  height: 14px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.survey-slider-segment {
  flex: 1;
  transition: opacity 0.15s;
}
.survey-slider-segment:hover { opacity: 0.8; }

.survey-slider-segment--1 { background-color: #b0c4de; }
.survey-slider-segment--2 { background-color: #c8d5e8; }
.survey-slider-segment--3 { background-color: #f5edcc; }
.survey-slider-segment--4 { background-color: #f4c2cc; }
.survey-slider-segment--5 { background-color: #ffb6c1; }

.survey-slider-marker-row {
  position: relative;
  height: 20px;
}

.survey-slider-marker {
  position: absolute;
  transform: translateX(-50%);
  color: #555;
  font-size: 16px;
  line-height: 1;
  transition: left 0.15s ease;
  pointer-events: none;
}

/* ── Scale Result Bar (results display) ── */
.scale-result-bar-wrapper {
  padding: 0 10px;
}

.scale-result-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.85em;
  font-weight: bold;
}

.scale-result-bar {
  display: flex;
  height: 18px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.scale-result-bar--empty {
  opacity: 0.4;
}

.scale-result-bar__segment {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition: width 0.3s ease;
}

.scale-result-bar__segment--1 { background-color: #b0c4de; }
.scale-result-bar__segment--2 { background-color: #c8d5e8; }
.scale-result-bar__segment--3 { background-color: #f5edcc; }
.scale-result-bar__segment--4 { background-color: #f4c2cc; }
.scale-result-bar__segment--5 { background-color: #ffb6c1; }

.scale-result-bar__label {
  font-size: 0.7em;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}

.scale-result-count {
  text-align: center;
  font-size: 0.8em;
  color: #666;
  margin-top: 4px;
}

.survey-options-grid--wizard {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
}

.survey-option-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.survey-option-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}

.survey-option-image--empty {
  background-color: #f0f0f0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.survey-option-label {
  font-size: 0.8em;
  text-align: center;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.survey-wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.survey-wizard-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.survey-submit-button {
  margin-left: auto;
}

body.has-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .have-survey-modal__content {
    width: 100%;
    max-height: calc(100vh - 20px);
    margin: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .survey-options-grid--wizard {
    justify-content: flex-start;
    gap: 8px;
  }

  .survey-option-card {
    width: calc((100% - 16px) / 3);
    min-width: 0;
    max-width: 110px;
    flex: 0 1 calc((100% - 16px) / 3);
  }

  .survey-wizard-actions {
    flex-wrap: wrap;
  }

  .survey-wizard-actions .btn {
    flex: 1 1 48%;
    min-width: 0;
    white-space: normal;
  }
}

/* SVG Hover and Active States */
.record-btn[action-type="want"]:hover svg.action-icon,
.record-btn.active[action-type="want"] svg.action-icon {
  stroke: var(--color-primary-dark);
  fill: var(--color-primary-dark);
}

.record-btn[action-type="have"]:hover svg.action-icon,
.record-btn.active[action-type="have"] svg.action-icon {
  stroke: var(--color-text-main);
  fill: var(--color-text-main);
}

.record-btn[action-type="interested"]:hover svg.action-icon,
.record-btn.active[action-type="interested"] svg.action-icon {
  stroke: var(--color-accent);
  fill: var(--color-accent);
}
