@charset "UTF-8";
.konfigurator-container {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
  background: #ffffff;
}
.konfigurator-header {
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}
.konfigurator-header h2 {
  color: #444444;
  font-weight: 500;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .konfigurator-header h2 {
    font-size: 1.4rem;
  }
}
.konfigurator-header .konfigurator-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #444444;
}

.konfigurator-form .konfigurator-accordion .konfigurator-step {
  margin-bottom: 10px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  overflow: hidden;
}
.konfigurator-form .konfigurator-accordion .konfigurator-step:last-child {
  margin-bottom: 0;
}

.konfigurator-step-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.konfigurator-step-header:hover {
  background: #e9ecef;
}
.konfigurator-step-header .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #444444;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
  margin-right: 15px;
}
.konfigurator-step-header .step-title {
  flex: 1;
}
.konfigurator-step-header .step-title h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444444;
}
.konfigurator-step-header .step-title .step-selection {
  display: block;
  font-size: 0.85rem;
  color: #8a8a8a;
  margin-top: 2px;
}
.konfigurator-step-header .step-arrow {
  margin-left: 15px;
}
.konfigurator-step-header .step-arrow i {
  color: #8a8a8a;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.konfigurator-step-content {
  padding: 20px;
  background: #ffffff;
  display: none;
}
.konfigurator-step-content.show {
  display: block;
}
.konfigurator-step-content .step-description {
  margin-bottom: 20px;
}
.konfigurator-step-content .step-description p {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.95rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.option-item {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
  display: block;
}
.option-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option-item:hover {
  border-color: #444444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(207, 152, 126, 0.15);
  -webkit-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.15);
  -moz-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.15);
}
.option-item.selected,
.option-item input[type=radio]:checked ~ .option-image,
.option-item input[type=radio]:checked ~ .option-info {
  border-color: #444444;
}
.option-item input[type=radio]:checked ~ .option-image .option-overlay {
  opacity: 1;
}
.option-item.selected {
  border-color: #444444;
}
.option-item.selected .option-overlay {
  opacity: 1;
}
.option-item .option-image {
  position: relative;
  height: 90px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-item .option-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.option-item .option-image .option-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #444444;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-item .option-image .option-overlay .option-check {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
}
.option-item .option-info {
  padding: 10px 12px;
  text-align: center;
}
.option-item .option-info h4 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #444444;
}
.option-item .option-info .option-price {
  margin: 0;
  font-size: 0.95rem;
  color: #444444;
  font-weight: 500;
}

.font-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.font-item {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  overflow: visible;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
  display: block;
}
.font-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.font-item:hover, .font-item.selected {
  border-color: #444444;
}
.font-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.font-item .font-preview {
  display: block;
  padding: 5px;
  background: #fff;
  max-height: 90px;
  overflow: hidden;
}
.font-item .font-preview img {
  width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.font-item .font-preview span {
  font-size: 1.2rem;
  color: #444444;
}
.font-item .font-info {
  padding: 3px 5px;
  text-align: center;
}
.font-item .font-info h4 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.color-item {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 12px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
  display: block;
}
.color-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.color-item:hover, .color-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.color-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.color-item .color-preview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #ddd;
}
.color-item .color-preview.gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-color: #e6c300;
}
.color-item .color-preview.white {
  background: #ffffff;
  border-color: #ccc;
}
.color-item .color-preview.silver {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  border-color: #999;
}
.color-item .color-preview.black {
  background: #333333;
  border-color: #666;
}
.color-item .color-info h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.color-item .color-info .option-price {
  font-size: 0.9rem;
  color: #8a8a8a;
  margin: 0;
  font-weight: 500;
}

.price-update {
  transition: all 0.3s ease 0.3s ease;
  -webkit-transition: all 0.3s ease 0.3s ease;
  -moz-transition: all 0.3s ease 0.3s ease;
  transform: scale(1.05);
  color: #444444 !important;
}

.motif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}

.motif-item {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
  display: block;
}
.motif-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.motif-item:hover, .motif-item.selected {
  border-color: #444444;
}
.motif-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.motif-item .motif-preview {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.motif-item .motif-preview img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.motif-item .motif-preview.no-motif {
  background: #fff;
  border: 2px dashed #ddd;
}
.motif-item .motif-preview.no-motif i {
  color: #8a8a8a;
  font-size: 2rem;
}
.motif-item .motif-info {
  padding: 8px;
  text-align: center;
}
.motif-item .motif-info h4 {
  margin: 0 0 3px 0;
  font-size: 0.85rem;
  font-weight: 500;
}
.motif-item .motif-info .option-price {
  margin: 0;
  font-size: 0.8rem;
  color: #444444;
  font-weight: 500;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.size-item {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  text-align: center;
  position: relative;
  display: block;
}
.size-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.size-item:hover, .size-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.size-item.selected {
  border-color: #444444;
  background: #ffffff;
}
.size-item h4 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 500;
}
.size-item .option-price {
  margin: 0;
  font-size: 0.95rem;
  color: #444444;
  font-weight: 500;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.color-item {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  text-align: center;
}
.color-item:hover, .color-item.selected {
  border-color: #444444;
}
.color-item .color-preview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  border: 2px solid #ddd;
}
.color-item .color-preview.gold {
  background: linear-gradient(45deg, #ffd700, #b8860b);
}
.color-item .color-preview.white {
  background: #ffffff;
  border-color: #ccc;
}
.color-item .color-preview.silver {
  background: linear-gradient(45deg, #c0c0c0, #808080);
}
.color-item .color-preview.black {
  background: #000000;
}
.color-item h4 {
  margin: 0 0 3px 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.color-item .option-price {
  margin: 0;
  font-size: 0.8rem;
  color: #444444;
  font-weight: 500;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 15px 0;
}
@media (max-width: 768px) {
  .addon-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.addon-item {
  border: 2px solid #444444;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
  display: block;
  background: #ffffff;
  padding: 20px;
  min-height: 140px;
}
.addon-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.addon-item input[type=checkbox]:checked ~ .checkmark {
  background-color: #444444;
  border-color: #444444;
}
.addon-item input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.addon-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(207, 152, 126, 0.2);
  -webkit-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.2);
  -moz-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.2);
  transform: translateY(-2px);
}
.addon-item.selected {
  background: #ffffff;
  border-color: rgb(55.25, 55.25, 55.25);
  border-width: 3px;
  box-shadow: 0 6px 16px rgba(207, 152, 126, 0.35);
  -webkit-box-shadow: 0 6px 16px rgba(207, 152, 126, 0.35);
  -moz-box-shadow: 0 6px 16px rgba(207, 152, 126, 0.35);
}
.addon-item.selected::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: #444444;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}
.addon-item .konfigurator-checkbox {
  display: block;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.addon-item .konfigurator-checkbox .checkmark {
  display: none;
}
.addon-item .konfigurator-checkbox .addon-content {
  margin: 0;
  text-align: left;
}
.addon-item .konfigurator-checkbox .addon-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.3;
}
.addon-item .konfigurator-checkbox .addon-content p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.4;
}
.addon-item .konfigurator-checkbox .addon-content .addon-price {
  font-size: 1.1rem;
  color: #cf987e;
  font-weight: 700;
  display: block;
  margin-top: auto;
}

@media (max-width: 768px) {
  .addon-item {
    padding: 16px;
    min-height: auto;
  }
  .addon-item .addon-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .addon-item .addon-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .addon-item .addon-content .addon-price {
    font-size: 1rem;
  }
}
.konfigurator-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444444;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .konfigurator-label {
    font-size: 1rem;
  }
}

.konfigurator-select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  font-size: 1rem;
  line-height: 1.3;
  color: #444444;
  background-color: #ffffff;
  border: 1px solid #a3a3a3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transition: border-color 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23282828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 35px;
}
.konfigurator-select:focus {
  border-color: #444444;
  box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -webkit-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -moz-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
}
.konfigurator-select:hover {
  border-color: rgb(137.5, 137.5, 137.5);
}
.konfigurator-select.konfigurator-error {
  border-color: #ea4a30;
  box-shadow: 0 0 0 2px rgba(234, 74, 48, 0.1);
  -webkit-box-shadow: 0 0 0 2px rgba(234, 74, 48, 0.1);
  -moz-box-shadow: 0 0 0 2px rgba(234, 74, 48, 0.1);
}
.konfigurator-select option:first-child {
  color: #8a8a8a;
}
@media (max-width: 768px) {
  .konfigurator-select {
    height: 38px;
    font-size: 0.95rem;
    padding: 6px 10px;
    padding-right: 30px;
    background-size: 12px;
    background-position: right 8px center;
  }
}

.konfigurator-checkbox-group {
  margin-top: 5px;
}

.konfigurator-checkbox {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #444444;
  cursor: pointer;
  line-height: 1.3;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.konfigurator-checkbox:hover {
  color: #444444;
}
.konfigurator-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  pointer-events: none;
}
.konfigurator-checkbox input[type=checkbox]:checked ~ .checkmark {
  background-color: #444444;
  border-color: #444444;
}
.konfigurator-checkbox input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.konfigurator-checkbox input[type=checkbox]:focus ~ .checkmark {
  box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -webkit-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -moz-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
}
.konfigurator-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #ffffff;
  border: 1px solid #a3a3a3;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  flex-shrink: 0;
}
.konfigurator-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .konfigurator-checkbox {
    font-size: 0.95rem;
    padding-left: 25px;
  }
  .konfigurator-checkbox .checkmark {
    height: 14px;
    width: 14px;
  }
  .konfigurator-checkbox .checkmark:after {
    left: 3px;
    top: 0px;
    width: 3px;
    height: 7px;
  }
}

.addon-content {
  flex: 1;
  margin-left: 12px;
}
.addon-content h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 500;
}
.addon-content p {
  margin: 0 0 5px 0;
  font-size: 0.85rem;
  color: #8a8a8a;
  line-height: 1.3;
}
.addon-content .addon-price {
  font-size: 0.9rem;
  color: #444444;
  font-weight: 500;
}

.konfigurator-summary {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f7f7f7 0%, rgb(249.55, 249.55, 249.55) 100%);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border: 1px solid rgb(234.25, 234.25, 234.25);
}
@media (max-width: 768px) {
  .konfigurator-summary {
    margin-top: 20px;
    padding: 15px 12px;
  }
}

.konfigurator-price-summary h3 {
  color: #444444;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.konfigurator-price-summary h3 #celkova-cena {
  color: #444444;
  font-weight: 800;
}
@media (max-width: 768px) {
  .konfigurator-price-summary h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
  }
}
.konfigurator-price-summary .price-breakdown {
  font-size: 0.85rem;
  line-height: 1.4;
}
.konfigurator-price-summary .price-breakdown small {
  display: block;
  color: #8a8a8a;
  margin-bottom: 2px;
}

.konfigurator-buttons {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 768px) {
  .konfigurator-buttons {
    justify-content: center;
  }
}
.konfigurator-buttons .btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .konfigurator-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
.konfigurator-buttons .btn-reset {
  background-color: #8a8a8a;
  color: #ffffff;
}
.konfigurator-buttons .btn-reset:hover {
  background-color: rgb(112.5, 112.5, 112.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.konfigurator-buttons .btn-reset:active {
  transform: translateY(0);
}
.konfigurator-buttons .btn-order {
  background-color: #444444;
  color: #ffffff;
}
.konfigurator-buttons .btn-order:hover {
  background-color: rgb(42.5, 42.5, 42.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 152, 126, 0.3);
  -webkit-box-shadow: 0 4px 8px rgba(207, 152, 126, 0.3);
  -moz-box-shadow: 0 4px 8px rgba(207, 152, 126, 0.3);
}
.konfigurator-buttons .btn-order:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .konfigurator-container .row > .col-md-6:first-child {
    margin-bottom: 20px;
  }
}
.konfigurator-section[style*="display: none"] {
  display: none !important;
}
.konfigurator-section.konfigurator-fade-in {
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.konfigurator-loading .konfigurator-select,
.konfigurator-loading .konfigurator-checkbox input {
  opacity: 0.6;
  pointer-events: none;
}

.konfigurator-error {
  border-color: #ea4a30 !important;
  box-shadow: 0 0 0 3px rgba(234, 74, 48, 0.1) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(234, 74, 48, 0.1) !important;
  -moz-box-shadow: 0 0 0 3px rgba(234, 74, 48, 0.1) !important;
}

.konfigurator-success {
  border-color: #4cbb6c !important;
  box-shadow: 0 0 0 3px rgba(76, 187, 108, 0.1) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(76, 187, 108, 0.1) !important;
  -moz-box-shadow: 0 0 0 3px rgba(76, 187, 108, 0.1) !important;
}

.konfigurator-notification {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.konfigurator-notification--info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.konfigurator-notification--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.konfigurator-notification--warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.konfigurator-notification--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.konfigurator-notification__close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  opacity: 0.7;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.konfigurator-notification__close:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .konfigurator-notification {
    padding: 12px 15px;
    font-size: 1.3rem;
  }
}

.konfigurator-price-highlight {
  animation: priceHighlight 0.5s ease-out;
}

@keyframes priceHighlight {
  0% {
    transform: scale(1);
    color: inherit;
  }
  50% {
    transform: scale(1.05);
    color: #444444;
  }
  100% {
    transform: scale(1);
    color: #444444;
  }
}
.color-motiv-item {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: block;
}
.color-motiv-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.color-motiv-item:hover {
  transform: translateY(-3px);
  border-color: #444444;
  box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
  -webkit-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
  -moz-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.color-motiv-item.selected {
  border-color: #444444;
  background: linear-gradient(135deg, rgba(68, 68, 68, 0.05) 0%, rgba(68, 68, 68, 0.1) 100%);
  box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
  -webkit-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
  -moz-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
}
.color-motiv-item.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #444444;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  z-index: 2;
}
.color-motiv-item.selected .color-preview {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(207, 152, 126, 0.3);
  -webkit-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.3);
  -moz-box-shadow: 0 4px 12px rgba(207, 152, 126, 0.3);
}
.color-motiv-item .color-preview {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid #ddd;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
}
.color-motiv-item .color-preview.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #b8860b 100%);
  border-color: #e6c300;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  -moz-box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}
.color-motiv-item .color-preview.gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.color-motiv-item .color-preview.white {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.color-motiv-item .color-preview.white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.color-motiv-item .color-preview.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #808080 100%);
  border-color: #999;
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
  -moz-box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}
.color-motiv-item .color-preview.silver::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.color-motiv-item .color-preview.black {
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 50%, #000000 100%);
  border-color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.color-motiv-item .color-preview.black::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.color-motiv-item .color-info h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444444;
}
.color-motiv-item .color-info .option-price {
  font-size: 0.9rem;
  color: #444444;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .color-motiv-item {
    padding: 12px;
  }
  .color-motiv-item .color-preview {
    width: 40px;
    height: 40px;
  }
  .color-motiv-item .color-info h4 {
    font-size: 0.8rem;
  }
}
.photo-grid, .portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  padding: 10px 0;
}

.photo-item {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: block;
}
.photo-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.photo-item:hover {
  border-color: #444444;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
  -webkit-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
  -moz-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.15);
}
.photo-item:hover .photo-preview i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
}
.photo-item:hover .photo-preview::before {
  opacity: 1;
  border-color: #444444;
}
.photo-item.selected {
  border-color: #444444;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
  -webkit-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
  -moz-box-shadow: 0 8px 24px rgba(207, 152, 126, 0.2);
}
.photo-item.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #444444;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.photo-preview {
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e9ecef;
}
.photo-preview img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.photo-preview i {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 3px;
}
.photo-preview .photo-size {
  position: absolute;
  bottom: 5px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
}
.photo-preview.oval {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  position: relative;
}
.photo-preview.oval::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 60px;
  border: 2px dashed #444444;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.photo-preview.rectangle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 50px;
  border: 2px dashed #444444;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.photo-preview.engraved {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
}
.photo-preview.engraved i {
  color: #bdc3c7;
}
.photo-preview.engraved::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 55px;
  border: 2px dashed #95a5a6;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
.photo-preview.no-photo {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}
.photo-preview.no-photo i {
  color: #dc3545;
  font-size: 32px;
}

.engraved-text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.photo-info {
  padding: 8px;
  text-align: center;
}
.photo-info h4 {
  font-size: 0.8rem;
  margin: 0 0 3px 0;
  color: #495057;
  font-weight: 500;
  line-height: 1.2;
}
.photo-info .option-price {
  font-size: 0.75rem;
  color: #444444;
  font-weight: 500;
  margin: 0 0 2px 0;
}
.photo-info .text-muted {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .photo-grid, .portrait-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .photo-preview {
    height: 85px;
  }
  .photo-preview i {
    font-size: 24px;
  }
  .photo-info {
    padding: 10px;
  }
  .photo-info h4 {
    font-size: 0.8rem;
  }
}
.konfigurator-tooltip {
  position: relative;
}
.konfigurator-tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #444444;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-size: 1.2rem;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 5px;
}
.konfigurator-tooltip:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #444444;
  z-index: 1000;
}

.customer-info-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-top: 25px;
}
.customer-info-section h4 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #444444;
}
.customer-info-section .form-group {
  margin-bottom: 20px;
}
.customer-info-section .form-group label {
  display: block;
  font-weight: 500;
  color: #444444;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.customer-info-section .form-group .form-control {
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.customer-info-section .form-group .form-control:focus {
  border-color: #444444;
  outline: none;
  box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -webkit-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
  -moz-box-shadow: 0 0 0 2px rgba(207, 152, 126, 0.1);
}
.customer-info-section .form-group textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.customer-info-section .form-group small {
  display: block;
  margin-top: 5px;
  color: #8a8a8a;
  font-size: 0.85rem;
}

.size-group[style*="display: none"] {
  display: none !important;
}

#barva-motivu-step[style*="display: none"] {
  display: none !important;
}/*# sourceMappingURL=konfigurator.css.map */