:root {
  --red-primary: #E63946;
  --red-glow: #D62828;
  --cream-bg: #FFF9F0;
  --dark-charcoal: #1D1D1D;
  --soft-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
  --curve: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', system-ui, sans-serif;
}

body {
  background-color: var(--cream-bg);
  color: var(--dark-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 249, 240, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.logo img {
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--dark-charcoal);
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--red-primary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 21px;
  justify-content: space-between;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--dark-charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  position: relative;
  color: white;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video-bg {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red-primary), var(--red-glow));
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-glow));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3);
}

/* Sections */
section {
  padding: 120px 5%;
  position: relative;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

p {
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: var(--curve);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.product-price {
  font-weight: 700;
  color: var(--red-primary);
  margin-bottom: 1rem;
}

.product-actions {
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--dark-charcoal);
  color: white;
  padding: 5rem 5% 2rem;
  text-align: center;
  margin-top: 80px;
  border-radius: var(--curve) var(--curve) 0 0;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1.2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--red-primary);
}

.social-links a:hover svg {
  fill: #E63946 !important;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red-primary);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }

  .nav-menu.active {
    display: block !important;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 249, 240, 0.98);
    padding: 2rem 5%;
    border-bottom: 2px solid var(--red-primary);
    z-index: 999;
  }

  .nav-menu.active ul {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-menu.active a {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 80px 5%;
  }

  #hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.3rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ------------------------------
   Trust Strip Styling & Animations
--------------------------------*/
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; /* tighter horizontal spacing */
  padding: 2rem 5%; /* reduced padding */
  margin: 1rem 0; /* collapse top/bottom gap */
  background-color: #f9f9f9;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.trust-strip .trust-item {
  flex: 1 1 180px;
  max-width: 220px;
  margin: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.trust-strip .trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.12);
}

.trust-strip .trust-item div {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.35s ease;
}

.trust-strip .trust-item:hover div {
  transform: scale(1.25) rotate(-5deg);
}

.trust-strip .trust-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.trust-strip .trust-item p {
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 0;
  color: #333;
}

/* ------------------------------
   Testimonials Styling & Animations
--------------------------------*/
.testimonials {
  background-color: #fff;
  padding: 3rem 5%; /* reduced padding */
  margin: 1rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.testimonials h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.testimonials .testimonial {
  display: inline-block;
  width: 260px;
  margin: 0.5rem;
  padding: 1.2rem;
  background-color: #f6f6f6;
  border-radius: 12px;
  text-align: center;
  vertical-align: top;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  cursor: default;
}

.testimonials .testimonial:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 24px rgba(0,0,0,0.15);
  background-color: #fefefe;
}

.testimonials .testimonial p {
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  transition: color 0.35s ease;
}

.testimonials .testimonial:hover p {
  color: #111;
}

.testimonials .testimonial strong {
  font-weight: 600;
  font-size: 0.88rem;
  display: block;
  color: #111;
}

/* ------------------------------
   Fade-in Animation
--------------------------------*/
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   Responsive Collapsing
--------------------------------*/
@media (max-width: 900px) {
  .trust-strip {
    flex-direction: column;
    gap: 1.8rem;
    padding: 2rem 5%;
  }

  .trust-strip .trust-item {
    max-width: 280px;
    margin: 0 auto;
  }

  .testimonials .testimonial {
    width: 90%;
    margin: 0.6rem auto;
  }
}

@media (max-width: 500px) {
  .trust-strip {
    padding: 1.5rem 5%;
    gap: 1.2rem;
  }

  .trust-strip .trust-item div {
    font-size: 1.8rem;
  }

  .trust-strip .trust-item strong {
    font-size: 1rem;
  }

  .testimonials {
    padding: 2rem 5%;
  }

  .testimonials h2 {
    font-size: 1.5rem;
  }

  .testimonials .testimonial {
    padding: 1rem;
  }
}
