/* Color Palette */
:root {
  --primary: #2D7770;
  --secondary: #D9C3A3;
  --accent: #E16B32;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Helvetica Neue', 'Ubuntu', sans-serif;
  background: var(--secondary);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  margin: 0;
}

.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.landing-header {
  background: var(--primary);
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.logo h1 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* Main Content */
.landing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-section {
  width: 100%;
  max-width: 1200px;
}

.product-showcase {
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.product-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, var(--secondary) 0%, #f0e6d2 100%);*/
  border-radius: 12px;
  /*padding: 2rem;*/
}

.product-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.product-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.price-section {
  margin-top: 1rem;
}

.price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.checkout-button {
  background: var(--accent);
  color: var(--text-light);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(225, 107, 50, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.checkout-button:hover {
  background: #c95a28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 107, 50, 0.4);
}

.checkout-button:active {
  transform: translateY(0);
}

.button-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.checkout-button:hover .button-arrow {
  transform: translateX(4px);
}

/* Footer */
.landing-footer {
  background: var(--primary);
  padding: 1.5rem;
  text-align: center;
}

.landing-footer p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .logo h1 {
    font-size: 1.25rem;
  }

  .landing-header {
    padding: 1rem;
  }

  .landing-main {
    padding: 1rem;
  }
}

/* Legacy styles for old pages */
section {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 112px;
  border-radius: 6px;
  justify-content: space-between;
}

.product {
  display: flex;
}

.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h3,
h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #242d60;
  margin: 0;
}

h5 {
  opacity: 0.5;
}

img {
  border-radius: 6px;
}

button {
  font-weight: 500;
  letter-spacing: 0.6;
  transition: all 0.2s ease;
}
