body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f9;
  color: #333;
}
.section-main {
  margin-bottom: 30px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  justify-content: center;
}
.section-header {
  background-color: #154383;
  color: white;
  padding: 12px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.section-header.active::after {
  content: "-";
}
.variants {
  display: none;
}
.accessories-table {
  width: 100%;
  border-collapse: collapse;
}
.accessories-table th {
  background-color: #f0f4f8;
  color: #154383;
  padding: 12px 15px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e0e6ed;
}
.accessories-table td {
  padding: 12px 15px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  border-bottom: 1px solid #e0e6ed;
  vertical-align: middle;
}
.accessories-table tr:hover {
  background-color: #f8fafc;
}
.accessories-table img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}
.info {
  line-height: 1.4;
  width: 100px;
  font-weight: 700;
  font-size: large;
}
.info strong {
  display: block;
  color: #154383;
}

.action-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.table-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-action button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f0f4f8;
  color: #154383;
  border: 1px solid #d0d9e4;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.table-action button:hover {
  background: #e0e9f4;
  border-color: #154383;
}

.table-action input {
  width: 100px;
  height: 32px;
  text-align: center;
  border: 1px solid #d0d9e4;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  margin: 0;
}

.table-action input:focus {
  border-color: #154383;
  box-shadow: 0 0 0 2px rgba(21, 67, 131, 0.1);
}
.link-btn {
  background-color: transparent;
  border: 2px solid #154383;
  color: #154383;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  width: 180px;
}

.link-btn:hover {
  color: #154383;
  transform: translateY(-1px);
}

.btn {
  padding: 8px 16px;
  background-color: #154383;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  margin: 0;
  width: 180px;
}

.btn:hover {
  background-color: #0d2d5a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(21, 67, 131, 0.2);
}

.btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .accessories-table {
    display: block;
    overflow-x: auto;
  }
}

.in-cart-info {
  margin-top: 5px;
  font-size: 13px;
  color: #666;
  transition: all 0.3s;
  text-align: right;
}
.in-cart-info:hover {
  transform: translateY(-1px);
}
.quantity {
  width: 60px;
  padding: 5px;
}
