@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.price-calculator-container {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px;
  background: #f9fafb;
  min-height: 100vh;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.calculator-header .left {
  flex: none;
}
.calculator-header .left .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
.calculator-header .left .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.calculator-header .right {
  flex: 1;
  text-align: left;
}
.calculator-header .right h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .calculator-header .right h1 {
    font-size: 2rem;
  }
}
.calculator-header .right .product-name {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 10px;
}
.calculator-header .right p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 8px;
  margin-bottom: 0px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: start;
}
@media (max-width: 1200px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }
}

.options-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.options-section h2 {
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.options-section h2:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #2563eb;
  border-radius: 2px;
}

.option-category {
  margin-bottom: 35px;
}
.option-category:last-child {
  margin-bottom: 0;
}
.option-category h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.option-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  margin-bottom: 10px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #ffffff;
}
.option-item:hover {
  border-color: #2563eb;
  background: #f9fafb;
  transform: translateX(5px);
}
.option-item.selected {
  border-color: #2563eb;
  background: #f7f9fe;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.option-item input[type=checkbox],
.option-item input[type=radio] {
  margin-right: 15px;
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #2563eb;
  flex-shrink: 0;
}
.option-item .option-content {
  flex: 1;
}
.option-item .option-label {
  display: block;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
  font-size: 1rem;
  cursor: pointer;
}
.option-item .option-description {
  display: block;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}
.option-item .option-price {
  font-weight: 600;
  color: #10b981;
  font-size: 1.1rem;
  margin-left: 10px;
  white-space: nowrap;
  align-self: center;
}

.quantity-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.quantity-input-wrapper label {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}
.quantity-input-wrapper input[type=number] {
  width: 80px;
  padding: 8px 12px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.quantity-input-wrapper input[type=number]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.summary-sidebar {
  position: sticky;
  top: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #e5e7eb; 
}
.summary-sidebar h2 {
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.summary-sidebar h2:before {
  content: "💰";
  font-size: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
}
.summary-item.base-price .summary-label {
  font-weight: 600;
  color: #111827;
}
.summary-item .summary-label {
  color: #374151;
  flex: 1;
  margin-right: 15px;
}
.summary-item .summary-price {
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #2563eb;
}
.summary-total .total-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}
.summary-total .total-price {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.action-buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.action-buttons button {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.action-buttons button.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.action-buttons button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.action-buttons button.btn-primary:active {
  transform: translateY(0);
}
.action-buttons button.btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #d1d5db;
}
.action-buttons button.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.separator {
  height: 1px;
  background: #e5e7eb;
  margin: 25px 0;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.contact-buttons .contact-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-buttons .contact-btn svg {
  flex-shrink: 0;
  color: #4b5563;
  transition: all 0.3s ease;
}
.contact-buttons .contact-btn:hover {
  background: #f9fafb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.contact-buttons .contact-btn:hover svg {
  color: #2563eb;
}
.contact-buttons .contact-btn:hover .contact-value {
  color: #2563eb;
}
.contact-buttons .contact-btn:active {
  transform: translateY(0);
}
.contact-buttons .contact-btn .contact-label {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-buttons .contact-btn .contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  transition: all 0.3s ease;
}
.contact-buttons .contact-btn.phone-btn:hover {
  border-color: #10b981;
}
.contact-buttons .contact-btn.phone-btn:hover svg {
  color: #10b981;
}
.contact-buttons .contact-btn.phone-btn:hover .contact-value {
  color: #10b981;
}
.contact-buttons .contact-btn.email-btn:hover {
  border-color: #2563eb;
}
.contact-buttons .contact-btn.email-btn:hover svg {
  color: #2563eb;
}
.contact-buttons .contact-btn.email-btn:hover .contact-value {
  color: #2563eb;
}

.features-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 30px;
}
.features-section h2 {
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.features-section h2:before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.features-section .feature-item {
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}
.features-section .feature-item .feature-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.features-section .feature-item .feature-value {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.option-item,
.feature-item {
  animation: slideIn 0.4s ease-out;
}

@media (max-width: 768px) {
  .price-calculator-container {
    padding: 15px;
  }
  .calculator-layout {
    gap: 20px;
  }
  .options-section,
  .summary-sidebar,
  .features-section {
    padding: 20px;
  }
  .calculator-header h1 {
    font-size: 1.75rem;
  }
  .summary-sidebar {
    position: static;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}
@media print {
  .price-calculator-container {
    background: #ffffff;
  }
  .action-buttons {
    display: none;
  }
  .option-item {
    break-inside: avoid;
  }
}
.product-details-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .product-details-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.product-gallery .main-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.product-gallery .main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.product-gallery .other-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-gallery .other-images .image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #f3f4f6;
}
.product-gallery .other-images .image:hover {
  border-color: #d1d5db;
  transform: scale(1.05);
}
.product-gallery .other-images .image.selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.product-gallery .other-images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info .product-title {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-info .product-title {
    font-size: 1.5rem;
  }
}
.product-info .product-description {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
}
.product-info .product-description p {
  margin-bottom: 15px;
}
.product-info .product-description p:last-child {
  margin-bottom: 0;
}
.product-info .product-description ul, .product-info .product-description ol {
  margin: 15px 0;
  padding-left: 25px;
}
.product-info .product-description ul li, .product-info .product-description ol li {
  margin-bottom: 8px;
}
.product-info .product-description strong {
  color: #111827;
  font-weight: 600;
}
.product-info .product-description a {
  color: #2563eb;
  text-decoration: none;
}
.product-info .product-description a:hover {
  text-decoration: underline;
}

.modal {
  z-index: 9999999 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.modal .modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  margin-top: 24px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.3s ease-out;
  z-index: 10000;
}
.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 2px solid #e5e7eb;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 12px 12px 0 0;
}
.modal .modal-header h2 {
  font-size: 1.75rem;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}
.modal .modal-header .modal-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal .modal-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.modal .modal-body {
  padding: 30px;
}
.modal .modal-description {
  color: #4b5563;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}
.modal .form-group {
  margin-bottom: 20px;
}
.modal .form-group label {
  display: block;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.modal .form-group input[type=text],
.modal .form-group input[type=email],
.modal .form-group input[type=tel],
.modal .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}
.modal .form-group input[type=text]:focus,
.modal .form-group input[type=email]:focus,
.modal .form-group input[type=tel]:focus,
.modal .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.modal .form-group input[type=text]::placeholder,
.modal .form-group input[type=email]::placeholder,
.modal .form-group input[type=tel]::placeholder,
.modal .form-group textarea::placeholder {
  color: #9ca3af;
}
.modal .form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.modal .modal-actions button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal .modal-actions button.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.modal .modal-actions button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.modal .modal-actions button.btn-primary:active {
  transform: translateY(0);
}
.modal .modal-actions button.btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #d1d5db;
}
.modal .modal-actions button.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.modal .form-message {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.modal .form-message h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.modal .form-message p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal .form-message button {
  margin: 0 auto;
  display: block;
}
.modal .form-message.success {
  background: #b6f9e3;
  border: 2px solid #10b981;
  color: #0c8a60;
}
.modal .form-message.success h3 {
  color: #0a7350;
}
.modal .form-message.error {
  background: white;
  border: 2px solid #ef4444;
  color: #eb1515;
}
.modal .form-message.error h3 {
  color: #d41212;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  .modal .modal-header {
    padding: 20px;
  }
  .modal .modal-header h2 {
    font-size: 1.5rem;
  }
  .modal .modal-body {
    padding: 20px;
  }
  .modal .modal-actions {
    flex-direction: column;
  }
  .modal .modal-actions button {
    width: 100%;
  }
}

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