.heading {
  height: 90vh;
}

.heading h1 {
  width: 100%;
  text-align: center;
  padding: 30px;
}

.heading .category img {
  height: 250px;
  width: auto;
  padding: 20px
}

.three-column {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.wrapper {
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

aside {
  width: 10%;
  height: 100vh;
  min-height: 200px;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
}

aside nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 60vh;
  padding: 20% 10%;
  text-align: center;
}

aside nav img {
  width: 70%;
  height: auto;
  margin: auto;
}


#product-container {
  width: 90%;
  display: flex;
  flex-direction: column;
}

#product-container h2 {
  width: 100%;
  padding-bottom: 50px;
}

/* .accordion-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 100vh;
} */



.accordion-tab {
  width: 90%;
  padding: 10px;
  margin: auto;
}

.accordion-tab-wrapper {
  display: flex;
  gap: 20px;
}

.accordion-tab-group{
  width: 40%
}

.accordion-tab-group label{
  font-size: 1.5rem;
}

.accordion-tab-group .tab {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 2px 8px 2px;
  width: 300px;
  display: inline-block;
  border-radius: 20px;
}

.accordion-tab-group .tab:hover {
  background: #E09D56FF;
  color: #FBF3E9FF;
}

.accordion-tab-description{
  font-size: 1.2rem;
  line-height: 1.7rem;
}

#one:checked~.accordion-tab-group #one-tab,
#two:checked~.accordion-tab-group #two-tab,
#three:checked~.accordion-tab-group #three-tab {
  background-color: #E09D56FF;
  color: #FBF3E9FF;
}

.accordion-tab-wrapper input[type="radio"] {
  display: none;
}

.accordion-tab-contents {
  background-color: #E09D56FF;
  color: #FBF3E9FF;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}

#one:checked~.accordion-tab-contents #one-tab-content,
#two:checked~.accordion-tab-contents #two-tab-content,
#three:checked~.accordion-tab-contents #three-tab-content {
  display: block;
}

.accordion-tab-contents .accordion-tab-content {
  display: none;
}


/* comparison table */
.comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  /* border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd; */
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  /* border-top: 1px solid #ddd;
  border-left: 1px solid #ddd; */
}

.comparison-table th:first-child {
  border: 0;
}


.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  position: relative;
  background: rgba(224, 157, 86, 0.4);
  mix-blend-mode: multiply;
}

.comparison-table th:nth-child(3) {
  border-radius: 20px 20px 0 0;
}


.comparison-table tr td:first-child {
  border-radius: 20px 0 0 20px;
}

.comparison-table tr td:last-child {
  border-radius: 0 20px 20px 0;
}

.comparison-table tr:nth-child(2n) {
  background: rgba(86, 52, 16, 0.05);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}