html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #f9f8f6;
}

main {
  background-color: #ffffff;
}

/*HERO*/
.hero-container {
  position: relative;
  width: 100%;
  height: 32rem;
  object-fit: fill;
  overflow: hidden;
  background: #111111;
}

/*SLIDES*/
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(24px) scale(1.02);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
  transition: transform 12000ms ease;
}

.hero-slide.active img {
  transform: scale(1.1);
}

/*TEXT*/
.hero-slide h1 {
  font-size: 2rem;
  letter-spacing: 1px;
}

/*ARROWS*/
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(255, 255, 255, 0.85);
  width: 45px;
  height: 45px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  font-size: 24px;
  color: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
  user-select: none;

  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Buy Section */
.buy-option {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 90%;
  display: flex;
  flex-direction: column;
  font-family: "Roboto Mono", monospace;
  margin-left: 20px;
  margin-right: 20px;
}

.text-title {
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0px 20px;
  font-size: 2rem;
}

.underline {
  width: 120px;
  height: 5px;
  background-color: #8b5e34;
  margin: 10px 20px 20px 20px;
  justify-content: left;
}

.buy-grid {
  row-gap: 80px;
}

.buy-card {
  border: 2px solid #dcdcdc;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
  height: 302px;
  width: 100%;
  margin: 20px;
}

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

.buy-card img {
  width: 100%;
  height: 298px;
  object-fit: cover;
  border-radius: 15px;
}

.buy-card h3 {
  font-weight: 500;
  font-size: 1.08rem;
  z-index: 1;
}

.buy-text {
  text-decoration: none;
  color:#4e371d;
  margin-top: 1rem;
}

.buy-text:hover {
  color:#8b5e34;
}

/* Signature section */
.signature-section {
  padding: 100px 0;
  font-family: "Roboto Mono", monospace;
  background: linear-gradient(135deg, #f7f6f3 0%, #efe9df 100%);
  box-shadow: inset 0 10px 12px -10px rgba(139, 94, 52, 0.35);
  margin: 0;
}

/* Make both columns equal height */
.signature-row {
  display: flex;
  align-items: stretch;
}

/* Left content */
.signature-content {
  padding-right: 40px;
}

.signature-heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #452c10;
}

.signature-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4e371d;
  margin-bottom: 1rem;
}

.signature-img {
  width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}

.signature-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Right video */
.signature-video-col {
  padding: 0;
  margin: 0;
}

.signature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* USER SHARING AND BLOG POST */
.sections-wrapper {
  font-family: "Roboto Mono", monospace;
}

.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #222;
  font-weight: 700;
}

.title-underline {
  width: 80px;
  height: 5px;
  background: #8b5e34;
  margin: 15px 0;
}

/*BLOGS*/
.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.container {
  margin-top: 0;
}
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.blog-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-title {
  font-size: 0.8rem;
  margin: 12px 0 6px;
  color: #222;
}

.blog-subtitle {
  font-size: 1rem;
  margin: 0;
}

.user-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.user-img:hover {
  transform: translateY(-8px);
}

/* User sharing */
/* USERS REVIEW LAYOUT */

.user-review-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-review-card {
  display: flex;
  align-items: center;
  gap: 24px;

  background: #fff;
  border-radius: 16px;
  padding: 20px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.review-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-stars {
  color: #c58b3a; /* matches your brown accent */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.review-author {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.3rem;
  }

  .blog-title {
    font-size: 1.25rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .compare-card {
    margin: 60px 15px;
    padding: 2.5rem !important;
  }

  .display-4 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .compare-card {
    margin: 40px 10px;
    padding: 2rem !important;
  }

  .display-4 {
    font-size: 2.3rem;
  }

  .compare-circle {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/*RESPONSIVE*/
@media (max-width: 768px) {
  .hero-container {
    height: 40vh;
    min-height: 280px;
  }

  .arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .hero-slide h1 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-slide,
  .hero-slide img,
  .arrow {
    transition: none;
  }
}