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

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 1.5em; /* space for the custom bullet */
}

.custom-list li::before {
  content: "•"; /* Can be any character or icon */
  position: absolute;
  left: 0;
  /* top: 0.5em; */
  font-size: 1.2em;
  color: #333;
}
@font-face {
    font-display: swap;
    font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: bold;
    src: local('SamsungSSHead'),url('../fonts/SamsungSSHead-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: normal;
    src: local('SamsungSSHead'),url('../fonts/SamsungSSHead-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: bold;
    src: local('SamsungSSBody'),url('../fonts/SamsungSSBody-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
    src: local('SamsungSSBody'),url('../fonts/SamsungSSBody-Regular.woff2') format('woff2');
}
body {
    font-family: SamsungSSBody, Arial, sans-serif;
	font-style: normal;
    font-weight: normal;
    overflow-x: hidden;
}

h1 {
	font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: bold;
    margin-bottom: 20px;
}
p {
	font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
  font-size: 1.15rem;
}

.p {
  font-size: 1.15rem;  
}

.samsung-h4 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

a {
	font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
  color: black;
}
a:hover {
  color: #474747;
  text-decoration: none;
}

.samsung-h1 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
}
.samsung-h2 {
  font-family: SamsungSSBody, sans-serif;
  font-size: 18px;
  line-height: 1.33;
}
.samsung-h3 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  font-weight: bold;
}
.samsung-disclaimer{
  font-family: SamsungSSBody, sans-serif;

  font-size: 0.95rem;
  line-height: 1.7rem;
}

@media only screen and (min-width: 768px) and (max-width:1440px) {
  .samsung-h1 {
    font-size: 2.63888889vw;
  }
  .samsung-h2 {
    font-size: 1.25vw;
  }
  .samsung-h3 {
    font-size: 2.25vw;
  }

}

.selector-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin-top: 2em;
}
#selectorWrapper {
  position: sticky;
  top: 0;
  background: white; /* Match your page background */
  z-index: 1000;
  padding: 1em 0;
}


.selector-wrapper select:nth-child(3) {
  display: none;
}

@media (min-width: 768px) {
  .selector-wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 3em;
  }

  .selector-wrapper select:nth-child(3) {
      display: block;
  }
}


select {
  padding: 10px;
  font-size: 14px;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1em;
}

@media (min-width: 768px) {
.row {
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}
}

.cell {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  font-family: SamsungOne, sans-serif;
  text-align: center;
}

.cell.label {
  font-weight: bold;
}

.color-radio {
  display: inline-block;
  position: relative;
  margin: 4px;
  cursor: pointer;
}

.color-radio input[type="radio"] {
  display: none;
}

.color-radio .swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* border: 2px solid #ccc; */
  display: inline-block;
  transition: transform 0.2s ease;
}

.color-radio input[type="radio"]:checked + .swatch {
  border: 1px solid #333;
  transform: scale(1.2);
}


.color-radio:hover {
  opacity: 0.8;
}

/* Apply border-bottom starting from the 3rd row, every 2nd row after that, but not the last row */
.comparison-grid .row:nth-of-type(n+3):nth-of-type(2n+1):not(:last-of-type) .cell.features {
  border-bottom: 1px solid #8a8a8a;
  padding-bottom: 2em;
}
.comparison-grid .row .label {
  padding-top: 2em;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  border: none; /* Remove default borders */
  border-bottom: 1px solid #8a8a8a; /* Add bottom border */
  background-color: transparent; /* Transparent background */
  padding: 8px 0 8px 8px; /* Adjust padding */
  font-size: 1em; /* Font size */
  font-family: SamsungOne, sans-serif;
  color: #333; /* Text color */
  
  outline: none; /* Remove outline on focus */
  position: relative; /* Ensure arrow is positioned correctly */
  transition: border-color 0.3s ease; /* Smooth transition for border */
}


.button{
  display: block;
  /*width: 100%;*/
  box-sizing: border-box;
  text-align: center;
  color:#fff;
  background-color: #000;
  border: 1px solid #000;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}
.button:hover{
  color: #fff;
  background-color: #000;
  text-decoration: none;
}
.button--outline{
  color: #000;
  background-color: transparent;
}
.button--outline:hover{
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .custom-dropdown {
      font-size: 4.2vw;
  }
  .button{
      font-size: 11px;
      padding: 7px 10px;
      letter-spacing: 0.04em;
  }
}