@import url(../../../style.css);

:root {
  --primary: #002a32;
  --primary2: #ebc43b;
  --primary3: #288a9e;
  --bg: #f6f4ed;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.3rem;
}

.product-desc {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}

.product-desc .desc-img img {
  width: 400px;
  border: 5px solid;
  border-radius: 1rem;
}

.product-desc .desc-content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 700px;
}

.product-desc .desc-content .content-title {
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
}

.product-desc .desc-content .content-title h3 {
  line-height: 1.2;
}

.product-desc .desc-content .content-main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  border-top: 3px solid;
  border-bottom: 3px solid;
}

.product-desc .desc-content .content-main li {
  list-style-type: disc;
  font-size: 1.1rem;
  font-style: italic;
}

.product-desc .desc-content .desc {
  border-top: 3px solid;
  border-bottom: 3px solid;
  padding: 1.5rem;
}

.product-desc .desc-content .code {
  border-bottom: 3px solid;
  padding: 0 0 1.5rem 1.5rem;
}

.product-spec {
  margin-top: 5rem;
}

.product-spec table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}

.product-spec table tr.odd {
  background-color: var(--primary3);
}

.product-spec table tr.odd td {
  color: var(--primary2);
}

.product-spec table tr th {
  text-align: center;
  padding: 0.5rem;
  font-size: 1.5rem;
  font-style: italic;
  border: 2px solid;
}

.product-spec table tr td {
  width: fit-content;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.5rem 0;
}
