#ONEX .container { @apply mx-auto px-4; }

:root {
  --primary: #d3581a;
  --primary-dark: #b94d17;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
}

:where(.ONEX *) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

#ONEX .py-20 {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

#ONEX .bg-gray-50 {
  background-color: var(--gray-50);
}

#ONEX .text-center {
  text-align: center;
}

#ONEX .mb-16 {
  margin-bottom: 2rem;
}

#ONEX .title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

#ONEX .subtitle {
  color: var(--gray-600);
  max-width: 42rem;
  margin: 1rem auto;
}

#ONEX .info-box {
  background-color: #fff1eb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

#ONEX .bullet-list {
  list-style: none;
  margin-top: 1rem;
  margin-left: 0 !important;
}

#ONEX .bullet-list li {
  display: flex;
  align-items: center;
  font-size:15px;
  padding-left: 1.5rem;
  position: relative;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: #fff1eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray-600);
}

/* Power Options */

.power-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .power-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.power-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.power-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.power-option {
  background: white;
  padding: 1.2rem 0.5rem 1.75rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid var(--primary);
  border-width: 1px 1px 6px 1px;
}

.power-option h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.power-option p {
  padding-top: 12px;
  color: var(--gray-600);
}

.rail-options {
  background: #fff1eb;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
}

.rail-options h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.power-image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.power-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-button {
  text-align: center;
}

@media (max-width: 1023px) {
  .power-options {
    grid-template-columns: 1fr;
  }
  
  .power-image {
    min-height: 300px;
  }
}

.doc-image {
  height: 0;
  padding: 25%;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .power-options {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessories Section */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.accessory-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.accessory-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.accessory-content {
  padding: 1.5rem;
}

.accessory-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.accessory-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.learn-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.learn-more:hover {
  color: var(--primary-dark);
}

.learn-more::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.learn-more:hover::after {
  transform: translateX(4px);
}

/* Warranty Section */

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.warranty-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.warranty-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  text-align: center;
}

.warranty-years {
  text-align: center;
  margin: 2rem 0;
}

.years {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.years-text {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  color: var(--gray-600);
}

.warranty-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.warranty-features {
  list-style: none;
  margin-top: 1.5rem;
}

.warranty-features li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--gray-600);
}

.warranty-features li::before {
  content: "✓";
  margin-right: 0.75rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .warranty-grid {
    grid-template-columns: 1fr;
  }
}