body {
    padding-bottom: 100px; 
    background-color: #111111
}

.brand-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}

.color {
    color: #c7f12c;
}

.take-left {
  position: absolute;
  top: 7%;
  left: 4%;
  z-index: 5;
  color: white;
}

.take-left h2 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 1.05;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.take-left p {
  margin-top: 26px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.take-right {
  position: absolute;
  top: 40%;
  right: 5%;
  z-index: 5;
  color: white;
  text-align: right;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.take-logo {
  position: absolute;
  left: 4%;
  bottom: 0%;
  z-index: 5;
  color: rgba(255,255,255,0.35);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.takeaway-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    overflow: hidden;
}

.section-wrapper {
    position: relative; 
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

#take-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: absolute;
    bottom: 20px;
    max-width: 900px;
    height: 400px;
    margin: auto;
    left: 50%;
    transform: translateX(-40%);
    align-items: center;
    justify-items: center;
    gap: 15px;
}

.take-item {
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
  height: 200px;
  width: 200px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  padding: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.take-item img {
    width: 100px;
    z-index: 120;
    filter: invert(100%);
}

.take-item::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  box-shadow: 0 0 18px rgba(199,241,44,0.35);
}

.take-item:hover {
  background: rgba(199,241,44,0.13);
  border-color: rgba(199,241,44,0.9);
  box-shadow:
    0 0 24px rgba(199,241,44,0.65),
    inset 0 0 20px rgba(255,255,255,0.14);
  transform: translateY(-6px);
}

.take-item.selected {
  background: rgba(199,241,44,0.16);
  border-color: rgba(199,241,44,1);
  box-shadow:
    0 0 32px rgba(199,241,44,0.85),
    inset 0 0 28px rgba(255,255,255,0.18);
}

.take-info {
  position: absolute;
  left: 3%;
  top: 37%;
  z-index: 1;
  width: 300px;
  padding: 26px;
  border-radius: 26px;
  color: white;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.take-info.active {
  opacity: 1;
  transform: translateY(0);
}

.take-info-label {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 14px;
}

.take-info h3 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.take-info strong {
  display: block;
  color: #c7f12c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.take-info p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

#take-itemCopy a, #itemCopy a {
    pointer-events: auto !important;
    color: #c7f12c; /* Make it match your brand color */
    text-decoration: underline;
    position: relative;
    z-index: 1000;
}

@media (max-width: 900px) {
  .take-left h2 {
    font-size: 38px;
  }


  #take-container {
    max-width: 600px;
    height: 200px;
    bottom: 200px;
  }
  .take-item {
    height: 100px;
    width: 100px;
  }

    .take-item img{
        width: 75px;
    }
}
