@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: #121212;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility */
.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background-color: #121212;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  width: 200px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.header-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-icon {
  display: flex;
  align-items: center;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #ececec;
  color: #121212;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Typography */
h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.25rem;
  color: #242424;
}

.advertorial-label {
  background-color: #000;
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 6px 0;
}

/* Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin: 40px auto;
}

.main-content {
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* Sidebar Box */
.sidebar-box {
  border: 2px solid #242424;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
}

.sidebar-title {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  background-color: #f26722;
  color: #000 !important;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
  border-radius: 6px;
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:hover {
  background-color: #ff9335;
}

.highlight-box {
  background-color: rgba(255, 238, 0, 0.7);
  padding: 20px;
  margin: 24px 0;
}

/* Media */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-bottom: 20px;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.testimonial-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
}

.testimonial-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 15px;
  background: #ddd;
}

/* List Styles */
.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.checklist li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✓";
  color: #f26722;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Footer */
.site-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 200px;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    position: static;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 130px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}