* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 5%;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Top Section */
.top-section {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
  align-items: center;
}

.left-content {
  flex: 1;
}

.left-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.description p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.customer-review {
  margin-top: 20px;
}

.review-content {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.review-content .customer-name {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-content p {
  margin: 0;
  font-style: italic;
}

.right-content {
  flex: 1;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Middle Section */
.middle-section {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}

.left-column,
.right-column {
  flex: 1;
  padding: 0 16px;
}

.section-header {
  background-color: #000;
  color: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  margin-left: -16px;
  margin-right: -16px;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  margin: 0;
}

.option-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}

/* Centrování pouze pro možnosti doručení */
.delivery-options .option-row {
  justify-content: center;
}

.delivery-options .option-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ddd;
}

/* Payment options separators */
.payment-options .option-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ddd;
}

.payment-options .option-row:last-child::after {
  display: none;
}

.option-logo {
  width: 80px;
  height: 60px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

/* Menší obrázky pro možnosti plateb */
.payment-options .option-logo {
  width: 60px;
  height: 45px;
}


.option-details {
  flex: 1;
}

/* Centrování textu pouze pro možnosti doručení */
.delivery-options .option-details {
  text-align: center;
}

.option-name {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 2px;
}

.option-desc {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.option-price {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  min-width: 80px;
  text-align: right;
}

/* Centrování cen pouze pro možnosti doručení */
.delivery-options .option-price {
  text-align: center;
}

.option-price.free {
  color: #23cc3d;
}

.free-shipping {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
}

.free-shipping p {
  margin-bottom: 10px;
  font-weight: 400;
  color: #000;
  width: 100%;
  display: block;
  text-align: center;
}

.text-strong {
  font-weight: 700;
}

.free-shipping p:last-child {
  margin-bottom: 0;
}

/* Bottom Section */
.bottom-section {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}

.delivery-countries {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 12px;
  border-radius: 8px;
  position: relative;
}

.country-item.added {
  padding-right: 8px;
}

.country-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ddd;
}

.flag {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
}

.select-btn {
  background-color: #f4f4f4;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: auto;
}

.arrow {
  margin-left: 5px;
}

.delete-btn {
  background-color: transparent;
  color: #666;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: auto;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.delete-btn:hover {
  color: #999;
}



.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: block;
  padding: 0;
  margin: 12px 0;
  background: #f4f4f4;
  border-radius: 10px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
}



.faq-question {
  font-weight: 500;
  font-size: 16px;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
  margin-left: 20px;
}

.faq-answer {
  display: none;
  width: 100%;
  padding: 0 20px 18px 20px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  cursor: default;
}

.faq-item.expanded .faq-answer {
  display: block;
}



.dropdown {
  position: absolute;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown.hidden {
  display: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ddd;
}

.dropdown-item:last-child::after {
  display: none;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

.dropdown-item img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

/* Bottom Images */
.bottom-images {
  display: flex;
  gap: 20px;
  width: 100%;
}

.bottom-img {
  flex: 1;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-section,
  .middle-section,
  .bottom-section {
    flex-direction: column;
    gap: 20px;
  }

  .bottom-images {
    flex-direction: column;
    align-items: center;
  }

  .left-content h1 {
    font-size: 2rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .option-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .option-price {
    text-align: left;
    min-width: auto;
  }

  .country-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .country-item.added {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .select-btn {
    margin-left: 0;
  }

  .delete-btn {
    margin-left: 0;
    margin-top: 0;
  }
}
