@charset "UTF-8";
/* Стили для кнопки "Открыть в новой вкладке" */
.bulma-info-button {
  background: linear-gradient(135deg, #202953 0%, rgba(84, 95, 97, 0.4784313725) 100%);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bulma-info-button:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

.bulma-info-button:active {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bulma-info-button .bulma-icon {
  margin-right: 0.5rem;
}

/* Стили для заголовка с кнопкой копирования */
.bulma-title-with-copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bulma-title-with-copy .bulma-title {
  margin: 0;
  flex: 1;
}

.bulma-copy-link-btn {
  background: transparent;
  border: 2px solid #913d45;
  color: #913d45;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.bulma-copy-link-btn:hover {
  background: #913d45;
  color: white;
  border-color: #913d45;
  transform: none;
  box-shadow: none;
}

.bulma-copy-link-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 61, 69, 0.2);
}

.bulma-copy-link-btn .bulma-icon {
  margin: 0;
}

/* Стили для цены в карточке десерта */
.bulma-cake-price {
  margin-top: 0.5rem;
}

.price-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #913d45;
}

/* Стили для галереи изображений */
.bulma-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bulma-thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.bulma-thumbnail:hover {
  border-color: #007bff;
  transform: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bulma-thumbnail.bulma-thumbnail-active {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.bulma-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bulma-thumbnail:hover img {
  transform: none;
}

.bulma-main-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.bulma-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease-in-out;
}

/* Стили для радио кнопок */
.bulma-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.bulma-radio:hover {
  background: #f8f9fa;
}

.bulma-radio input[type=radio] {
  display: none;
}

.bulma-radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}

.bulma-radio input[type=radio]:checked + .bulma-radio-mark {
  border-color: #007bff;
  background: #007bff;
}

.bulma-radio input[type=radio]:checked + .bulma-radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

/* Стили для уведомлений */
@keyframes slideIn {
  from {
    transform: none;
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.bulma-notification-toast {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Стили для разных типов уведомлений */
.bulma-notification.bulma-is-success {
  background-color: #48c774;
  color: white;
}

.bulma-notification.bulma-is-warning {
  background-color: #ffdd57;
  color: #4a4a4a;
}

.bulma-notification.bulma-is-info {
  background-color: #3298dc;
  color: white;
}

.bulma-notification.bulma-is-danger {
  background-color: #f14668;
  color: white;
}

/* Стили для табов описание/состав */
.bulma-tabs-section {
  margin-top: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.bulma-tabs {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.bulma-tabs ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bulma-tabs li {
  flex: 1;
}

.bulma-tabs li a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
}

.bulma-tabs li:hover a {
  background: #e9ecef;
  color: #333;
}

.bulma-tabs li.bulma-is-active a {
  color: #913d45;
  border-bottom-color: #913d45;
  background: white;
  font-weight: 600;
}

.bulma-tab-content {
  padding: 1rem;
  min-height: 60px;
}

.bulma-tab-pane {
  display: none;
}

.bulma-tab-pane.bulma-is-active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.bulma-tab-pane p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.bulma-tab-pane .bulma-has-text-grey {
  color: #666;
  font-style: italic;
}

/* Вариант 5: Карточки с крупными изображениями */
.bulma-cards-section {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.bulma-cards-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.bulma-cards-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.bulma-cards-group {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.2s ease;
}

.bulma-cards-group:hover {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-cards-group-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.bulma-fillings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.bulma-filling-card-option {
  display: block;
  cursor: pointer;
}

.bulma-filling-card-option input[type=radio] {
  display: none;
}

.bulma-filling-card {
  position: relative;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  height: 140px;
  display: flex;
  flex-direction: column;
}

.bulma-filling-card-option:hover .bulma-filling-card {
  border-color: #913d45;
}

.bulma-filling-card-option input[type=radio]:checked + .bulma-filling-card {
  border-color: #913d45;
  box-shadow: 0 4px 16px rgba(145, 61, 69, 0.3);
}

.bulma-filling-image-container {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.bulma-filling-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bulma-filling-card-option:hover .bulma-filling-image {
  transform: none;
}

.bulma-filling-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulma-filling-placeholder i {
  color: #999;
  font-size: 32px;
}

.bulma-filling-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(145, 61, 69, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bulma-filling-card-option input[type=radio]:checked + .bulma-filling-card .bulma-filling-overlay {
  opacity: 1;
}

.bulma-filling-check {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.bulma-filling-info {
  padding: 0.75rem;
  background: white;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulma-filling-name {
  font-size: 0.875rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.bulma-sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.bulma-size-card-option {
  display: block;
  cursor: pointer;
}

.bulma-size-card-option input[type=radio] {
  display: none;
}

.bulma-size-card {
  position: relative;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  min-height: 80px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.bulma-size-card-option:hover .bulma-size-card {
  border-color: #913d45;
}

.bulma-size-card-option input[type=radio]:checked + .bulma-size-card {
  border-color: #913d45;
  background: linear-gradient(135deg, rgba(145, 61, 69, 0.1) 0%, rgba(145, 61, 69, 0.05) 100%);
  box-shadow: 0 4px 16px rgba(145, 61, 69, 0.3);
}

.bulma-size-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulma-size-name {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.bulma-size-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #913d45;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bulma-size-card-option input[type=radio]:checked + .bulma-size-card .bulma-size-overlay {
  opacity: 1;
}

.bulma-size-check {
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Стили для скрытых элементов */
.bulma-hidden-item {
  display: none !important;
}

.bulma-show-all .bulma-hidden-item {
  display: block !important;
}

.bulma-cards-group.bulma-show-all .bulma-hidden-item {
  display: block !important;
}

/* Стили для контейнера кнопок "Показать все" */
.bulma-show-more-container {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.bulma-show-more-container .bulma-button {
  transition: all 0.2s ease;
}

.bulma-show-more-container .bulma-button:hover {
  background: #913d45;
  color: white;
  border-color: #913d45;
}

/* Убираем hover эффект с кнопки "Подробнее" */
/* Убираем все анимации hover и focus */
.bulma-filling-card-option:hover .bulma-filling-card,
.bulma-size-card-option:hover .bulma-size-card,
.bulma-option-item:hover .bulma-option-card,
.bulma-size-option:hover .bulma-size-card,
.bulma-accordion-option:hover .bulma-option-card,
.bulma-chip-option:hover .bulma-chip {
  transform: none !important;
  box-shadow: none !important;
}

.bulma-filling-card-option:hover .bulma-filling-image,
.bulma-size-card-option:hover .bulma-size-icon-container,
.bulma-accordion-option:hover .bulma-option-card {
  transform: none !important;
}

.bulma-cards-group:hover,
.bulma-chip-group:hover {
  border-color: #e0e0e0 !important;
  box-shadow: none !important;
}

/* Убираем transition анимации */
.bulma-filling-card,
.bulma-size-card,
.bulma-option-card,
.bulma-chip,
.bulma-cards-group,
.bulma-chip-group,
.bulma-filling-image,
.bulma-size-icon-container {
  transition: none !important;
}

/* Вариант 4: Компактные чипы стили */
.bulma-chips-section {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.bulma-chips-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.bulma-chips-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bulma-chip-group {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.2s ease;
}

.bulma-chip-group:hover {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-chip-group-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.bulma-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bulma-chip-option {
  display: block;
  cursor: pointer;
}

.bulma-chip-option input[type=radio] {
  display: none;
}

.bulma-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  background: #f8f9fa;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  white-space: nowrap;
}

.bulma-chip-option:hover .bulma-chip {
  border-color: #913d45;
  background: #f0f0f0;
  transform: none;
  box-shadow: 0 2px 4px rgba(145, 61, 69, 0.1);
}

.bulma-chip-option input[type=radio]:checked + .bulma-chip {
  border-color: #913d45;
  background: linear-gradient(135deg, #913d45 0%, #b8545a 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.3);
}

.bulma-chip-image {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bulma-chip-placeholder {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bulma-chip-placeholder i {
  color: #999;
  font-size: 10px;
}

.bulma-chip-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

.bulma-chip-option input[type=radio]:checked + .bulma-chip .bulma-chip-icon {
  background: rgba(255, 255, 255, 0.3);
}

.bulma-chip-text {
  font-weight: 500;
  line-height: 1;
}

/* Вариант 3: Горизонтальные табы стили */
.bulma-tabs-section .bulma-tabs.bulma-is-boxed {
  background: #fafafa;
  border-radius: 8px 8px 0 0;
  padding: 0.5rem;
  margin-bottom: 0;
}

.bulma-tabs-section .bulma-tabs.bulma-is-boxed ul {
  border-bottom: none;
}

.bulma-tabs-section .bulma-tabs.bulma-is-boxed li a {
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.bulma-tabs-section .bulma-tabs.bulma-is-boxed li.bulma-is-active a {
  background: #913d45;
  color: white;
  box-shadow: 0 2px 4px rgba(145, 61, 69, 0.3);
}

.bulma-tabs-section .bulma-tabs.bulma-is-boxed li:not(.bulma-is-active) a:hover {
  background: #f0f0f0;
  color: #913d45;
}

.bulma-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.bulma-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.bulma-option-item {
  display: block;
  cursor: pointer;
}

.bulma-option-item input[type=radio] {
  display: none;
}

.bulma-option-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: all 0.2s ease;
  gap: 0.75rem;
}

.bulma-option-item:hover .bulma-option-card {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-option-item input[type=radio]:checked + .bulma-option-card {
  border-color: #913d45;
  background: linear-gradient(135deg, rgba(145, 61, 69, 0.1) 0%, rgba(145, 61, 69, 0.05) 100%);
}

.bulma-option-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.bulma-option-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bulma-option-placeholder i {
  color: #999;
  font-size: 16px;
}

.bulma-option-info {
  flex: 1;
}

.bulma-option-name {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.bulma-sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.bulma-size-option {
  display: block;
  cursor: pointer;
}

.bulma-size-option input[type=radio] {
  display: none;
}

.bulma-size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: all 0.2s ease;
  text-align: center;
}

.bulma-size-option:hover .bulma-size-card {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-size-option input[type=radio]:checked + .bulma-size-card {
  border-color: #913d45;
  background: linear-gradient(135deg, rgba(145, 61, 69, 0.1) 0%, rgba(145, 61, 69, 0.05) 100%);
}

.bulma-size-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #913d45 0%, #b8545a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: white;
  font-size: 20px;
}

.bulma-size-name {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

/* Вариант 2: Аккордеон стили */
.bulma-accordion-section {
  margin-bottom: 1rem;
}

.bulma-accordion-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bulma-accordion-item:hover {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bulma-accordion-header:hover {
  background: #f0f0f0;
}

.bulma-accordion-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
}

.bulma-accordion-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bulma-accordion-icon {
  transition: transform 0.3s ease;
  color: #666;
}

.bulma-accordion-item.active .bulma-accordion-icon {
  transform: rotate(180deg);
}

.bulma-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.bulma-accordion-item.active .bulma-accordion-content {
  max-height: 500px;
}

.bulma-accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.bulma-accordion-option {
  display: block;
  cursor: pointer;
}

.bulma-accordion-option input[type=radio] {
  display: none;
}

.bulma-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 80px;
  justify-content: center;
}

.bulma-accordion-option:hover .bulma-option-card {
  border-color: #e0e0e0;
  background: #f0f0f0;
}

.bulma-accordion-option input[type=radio]:checked + .bulma-option-card {
  border-color: #913d45;
  background: linear-gradient(135deg, rgba(145, 61, 69, 0.1) 0%, rgba(145, 61, 69, 0.05) 100%);
}

.bulma-option-thumb {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.bulma-option-thumb-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.bulma-option-thumb-placeholder i {
  color: #999;
  font-size: 14px;
}

.bulma-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #913d45 0%, #b8545a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 14px;
}

.bulma-option-label {
  font-size: 0.8rem;
  color: #333;
  font-weight: 500;
  line-height: 1.2;
}

/* Компактные стили для параметров заказа (Вариант 1) */
.bulma-options-section {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.bulma-options-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.bulma-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bulma-option-group {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.2s ease;
}

.bulma-option-group:hover {
  border-color: #913d45;
  box-shadow: 0 2px 8px rgba(145, 61, 69, 0.1);
}

.bulma-option-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.bulma-option-content {
  min-height: 60px;
}

.bulma-compact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bulma-compact-option {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
  padding: 0.5rem;
  border: 1px solid transparent;
}

.bulma-compact-option:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
}

.bulma-compact-option input[type=radio] {
  display: none;
}

.bulma-compact-option input[type=radio]:checked + .bulma-option-content {
  background: linear-gradient(135deg, rgba(145, 61, 69, 0.1) 0%, rgba(145, 61, 69, 0.05) 100%);
  border-color: #913d45;
}

.bulma-option-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.bulma-option-image {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bulma-option-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bulma-option-placeholder i {
  color: #999;
  font-size: 12px;
}

.bulma-option-text {
  font-size: 0.875rem;
  color: #333;
  flex: 1;
  line-height: 1.3;
}

/* Стили для контейнера карточки десерта */
.cake-card-container {
  padding: 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  /* Отступы для карточки десерта */
  .cake-card-container {
    padding: 15px !important;
  }
  /* Адаптивные стили для цены на мобильных */
  .bulma-cake-price {
    margin-top: 0.25rem;
  }
  .price-text {
    font-size: 1rem;
  }
  /* Кнопка копирования на мобильных остается прижатой к правому краю */
  .bulma-copy-link-btn {
    margin-left: auto;
  }
  /* Модальное окно - размеры без отступов */
  .bulma-modal-card {
    max-width: calc(100vw - 40px) !important;
    max-height: calc(100vh - 40px) !important;
  }
}
@media (max-width: 480px) {
  /* Отступы для маленьких мобильных устройств */
  .cake-card-container {
    padding: 10px !important;
  }
  .bulma-thumbnail {
    width: 60px;
    height: 60px;
  }
  .bulma-thumbnails {
    gap: 0.25rem;
  }
  .bulma-notification-toast {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  .bulma-tabs li a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .bulma-tab-content {
    padding: 0.75rem;
  }
  .bulma-options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bulma-options-section {
    padding: 0.75rem;
  }
  .bulma-option-group {
    padding: 0.5rem;
  }
  .bulma-compact-option {
    padding: 0.375rem;
  }
  .bulma-option-text {
    font-size: 0.8rem;
  }
  .bulma-chips-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bulma-chips-section {
    padding: 0.75rem;
  }
  .bulma-chip-group {
    padding: 0.5rem;
  }
  .bulma-chip {
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
  }
  .bulma-chip-image,
  .bulma-chip-placeholder,
  .bulma-chip-icon {
    width: 16px;
    height: 16px;
  }
  .bulma-cards-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bulma-cards-section {
    padding: 0.75rem;
  }
  .bulma-cards-group {
    padding: 0.75rem;
  }
  .bulma-fillings-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  .bulma-filling-card {
    height: 120px;
  }
  .bulma-filling-image-container {
    height: 80px;
  }
  .bulma-filling-placeholder i {
    font-size: 24px;
  }
  .bulma-filling-check {
    font-size: 20px;
  }
  .bulma-sizes-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  .bulma-size-card {
    min-height: 70px;
    height: auto;
    padding: 0.5rem;
  }
  .bulma-size-name {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  /* На мобильных устройствах показываем все элементы сразу */
  .bulma-hidden-item {
    display: block !important;
  }
  /* Скрываем кнопки "Показать все" на мобильных */
  .bulma-show-more-container {
    display: none;
  }
}
.similar-cake-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similar-cake-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.similar-cake-card .bulma-card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.similar-cake-card .bulma-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.similar-cake-card .bulma-content {
  flex-grow: 1;
}

.bulma-similar-cakes-section {
  background-color: #f8f9fa;
  padding: 2rem 0;
  border-top: 1px solid #e9ecef;
}

/*# sourceMappingURL=PublicPortalCustomerCakeCard.css.map */
