:root {
  --primary-color: #DA062C;
  --secondary-color: #02356D;
  --accent-color: #F6A810;
  --cream-color: #FDF5E0;
  --light-color: #FFFDF8;
  --dark-color: #202020;
  --text-color: #4A4A4A;
  --white-color: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-color);
  background: var(--light-color);
  font-family: "Nunito Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--accent-color);
  color: var(--secondary-color);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--secondary-color);
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: 0;
}

p {
  line-height: 1.75;
}

.top-bar {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 0.92rem;
  padding: 0.48rem 0;
}

.top-bar i {
  color: var(--accent-color);
  margin-right: 0.35rem;
}

.top-bar a {
  color: var(--white-color);
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(2, 53, 109, 0.07);
  transition: all 0.35s ease;
}

.main-nav.nav-scrolled {
  box-shadow: 0 14px 34px rgba(2, 53, 109, 0.13);
}

.navbar-brand img {
  width: 116px;
  height: auto;
}

.navbar-nav {
  gap: 0.35rem;
}

.main-nav .navbar-collapse {
  /* Tailwind's .collapse utility otherwise hides Bootstrap's menu. */
  visibility: visible !important;
}

.main-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 800;
  position: relative;
  padding: 0.55rem 0.75rem !important;
  transition: color 0.25s ease;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus-visible::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible,
.main-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.78rem 1.35rem;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary-custom {
  background: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 14px 28px rgba(218, 6, 44, 0.2);
}

.btn-primary-custom:hover {
  background: #bd0527;
  border-color: #bd0527;
  color: var(--white-color);
}

.btn-secondary-custom {
  background: var(--secondary-color);
  color: var(--white-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 14px 28px rgba(2, 53, 109, 0.18);
}

.btn-secondary-custom:hover {
  background: #012a57;
  color: var(--white-color);
}

.btn-accent-custom {
  background: var(--accent-color);
  color: var(--secondary-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 14px 28px rgba(246, 168, 16, 0.2);
}

.btn-accent-custom:hover {
  background: #e79a08;
  color: var(--secondary-color);
}

.btn-outline-custom {
  color: var(--secondary-color);
  border: 2px solid rgba(2, 53, 109, 0.22);
  background: var(--white-color);
  padding: 0.55rem 1rem;
}

.btn-outline-custom:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

.hero-section {
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 8% 18%, rgba(246, 168, 16, 0.16), transparent 28%),
    linear-gradient(135deg, var(--cream-color), var(--light-color));
  padding: 6rem 0;
}

.hero-section h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.96;
  margin: 1rem 0 1.3rem;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.22rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.eyebrow,
.section-kicker {
  color: var(--primary-color);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.section-kicker.light {
  color: var(--accent-color);
}

.hero-image-wrap {
  position: relative;
  isolation: isolate;
  padding: 1rem;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 3.1rem 0 0 3.1rem;
  border: 3px dashed rgba(218, 6, 44, 0.34);
  border-radius: 34px;
  z-index: -1;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  border-radius: 34px;
  border: 12px solid var(--white-color);
  box-shadow: 0 26px 70px rgba(2, 53, 109, 0.22);
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 8%;
  background: var(--white-color);
  color: var(--secondary-color);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(2, 53, 109, 0.16);
  padding: 0.8rem 1.05rem;
  font-weight: 900;
  animation: floatSoft 4s ease-in-out infinite;
}

.floating-note i {
  color: var(--primary-color);
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.shape-red {
  width: 115px;
  height: 115px;
  background: var(--primary-color);
  right: 8%;
  top: 14%;
}

.shape-blue {
  width: 170px;
  height: 170px;
  background: var(--secondary-color);
  left: -45px;
  bottom: 14%;
}

.shape-gold {
  width: 76px;
  height: 76px;
  background: var(--accent-color);
  right: 43%;
  bottom: 12%;
}

.stitch-line {
  position: absolute;
  inset: 1rem;
  border: 2px dashed rgba(2, 53, 109, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.section {
  padding: 5.8rem 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading h2,
.intro-section h2,
.corporate-section h2,
.contact-strip h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.signature {
  font-family: "Sacramento", cursive;
  color: var(--primary-color);
  font-size: 2.25rem;
  margin-top: 1rem;
}

.feature-image-card {
  position: relative;
  background: var(--white-color);
  border-radius: 28px;
  padding: 0.8rem;
  box-shadow: 0 24px 60px rgba(2, 53, 109, 0.12);
}

.feature-image-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -18px;
  top: -18px;
  border: 3px dashed var(--accent-color);
  border-radius: 50%;
  z-index: -1;
}

.feature-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  border-radius: 22px;
}

.cream-band {
  background:
    linear-gradient(90deg, rgba(218, 6, 44, 0.035) 1px, transparent 1px),
    var(--cream-color);
  background-size: 28px 28px;
}

.product-card,
.value-card,
.service-card,
.story-panel,
.contact-info-card,
.contact-form-panel,
.testimonial-card {
  height: 100%;
  background: var(--white-color);
  border: 1px solid rgba(2, 53, 109, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(2, 53, 109, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover,
.value-card:hover,
.service-card:hover,
.story-panel:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(2, 53, 109, 0.15);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card div {
  padding: 1.2rem;
}

.product-card h3,
.value-card h3,
.gift-card h3,
.service-card h2,
.timeline-card h3,
.testimonial-card h3 {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--secondary-color);
}

.product-card p {
  font-size: 0.94rem;
}

.corporate-section {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
}

.corporate-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 3px dashed rgba(246, 168, 16, 0.25);
  border-radius: 50%;
  right: -110px;
  top: -120px;
}

.corporate-section h2 {
  color: var(--white-color);
}

.gift-card {
  height: 100%;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.35rem;
  transition: all 0.35s ease;
}

.gift-card:hover {
  background: rgba(255, 253, 248, 0.14);
  transform: translateY(-5px);
}

.gift-card i {
  color: var(--accent-color);
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.gift-card h3 {
  color: var(--white-color);
}

.value-card,
.service-card,
.story-panel {
  padding: 1.55rem;
}

.value-card i,
.service-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 24px rgba(218, 6, 44, 0.18);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  width: 54px;
  height: 54px;
  border: 2px dashed rgba(246, 168, 16, 0.55);
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: -10px;
}

.service-card a {
  color: var(--primary-color);
  font-weight: 900;
}

.showcase-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-grid {
  margin-top: 2rem;
}

.gallery-tile {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(2, 53, 109, 0.1);
  background: var(--white-color);
}

.gallery-tile::after {
  content: "\F42A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-color);
  color: var(--white-color);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.gallery-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.best-seller-card,
.best-seller-gallery {
  position: relative;
}

.best-seller-badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 5px;
  color: var(--dark-color);
  background: var(--accent-color);
  box-shadow: 0 8px 20px rgba(32, 32, 32, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.video-showcase-section {
  background: var(--secondary-color);
}

.video-showcase-section .section-kicker {
  color: var(--accent-color);
}

.video-showcase-section .section-heading h2,
.video-showcase-section .section-heading p {
  color: var(--white-color);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.video-card {
  overflow: hidden;
  min-width: 0;
  background: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  background: #111111;
  object-fit: contain;
}

.video-card-caption {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 58px;
  padding: 0.9rem 1rem;
  color: var(--secondary-color);
  font-weight: 900;
}

.video-card-caption i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.amazon-shop-section {
  background: var(--white-color);
}

.amazon-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.amazon-product-media {
  min-width: 0;
}

.amazon-main-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  border: 1px solid rgba(32, 32, 32, 0.08);
  border-radius: 8px;
}

.amazon-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amazon-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.amazon-thumbnails a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f7f7f7;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.amazon-thumbnails a:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.amazon-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  background: var(--cream-color);
  border-left: 4px solid var(--accent-color);
  padding: 0.65rem 0.9rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.amazon-product-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.amazon-product-copy > p {
  font-size: 1.08rem;
  margin-bottom: 1.25rem;
}

.amazon-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem;
  display: grid;
  gap: 0.7rem;
  font-weight: 700;
}

.amazon-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.amazon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-amazon {
  color: var(--dark-color);
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-amazon:hover {
  color: var(--white-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-amazon-outline {
  color: var(--secondary-color);
  background: var(--white-color);
  border: 2px solid var(--secondary-color);
}

.btn-amazon-outline:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline-card {
  background: var(--white-color);
  border: 1px dashed rgba(218, 6, 44, 0.22);
  border-radius: 18px;
  padding: 1.35rem;
  text-align: center;
  box-shadow: 0 16px 36px rgba(2, 53, 109, 0.08);
}

.timeline-card span {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1.4rem;
}

.cta-section {
  color: var(--white-color);
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 168, 16, 0.28), transparent 25%),
    var(--primary-color);
  padding: 4.6rem 0;
  position: relative;
}

.cta-section h2 {
  color: var(--white-color);
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-section p {
  font-size: 1.1rem;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 44px;
  height: 44px;
  top: auto;
  bottom: -64px;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 1;
}

.testimonials-section .carousel-control-prev {
  left: calc(50% - 52px);
}

.testimonials-section .carousel-control-next {
  right: calc(50% - 52px);
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card i {
  color: var(--accent-color);
  font-size: 2rem;
}

.testimonial-card span {
  color: var(--secondary-color);
  font-weight: 900;
}

.contact-strip {
  background: var(--cream-color);
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 1px solid rgba(2, 53, 109, 0.14);
  border-radius: 14px;
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: var(--white-color);
}

.enquiry-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(246, 168, 16, 0.18);
}

.page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(246, 168, 16, 0.18), transparent 28%),
    linear-gradient(135deg, var(--cream-color), var(--light-color));
  padding: 5.4rem 0;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 2px dashed rgba(2, 53, 109, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-filter span {
  border-radius: 999px;
  background: var(--cream-color);
  color: var(--secondary-color);
  font-weight: 900;
  padding: 0.6rem 1.1rem;
  border: 1px dashed rgba(218, 6, 44, 0.22);
}

.contact-info-card,
.contact-form-panel {
  padding: 1.6rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
}

.contact-info-card h2,
.contact-form-panel h2 {
  font-size: 2.2rem;
}

.contact-info-card a {
  color: var(--secondary-color);
  font-weight: 900;
}

.contact-info-card .contact-whatsapp-btn {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  color: var(--white-color);
  background: #168f46;
  border: 2px solid #168f46;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(22, 143, 70, 0.22);
}

.contact-info-card .contact-whatsapp-btn:hover,
.contact-info-card .contact-whatsapp-btn:focus-visible {
  color: var(--white-color);
  background: #0f7437;
  border-color: #0f7437;
  box-shadow: 0 15px 30px rgba(15, 116, 55, 0.3);
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--secondary-color);
  padding: 4rem 0 1.3rem;
}

.footer-logo {
  width: 135px;
  padding: 0.45rem;
  background: var(--white-color);
  border-radius: 18px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  color: var(--white-color);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.92rem;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 1.25rem;
  z-index: 998;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(2, 53, 109, 0.22);
}

.floating-whatsapp {
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  color: var(--white-color);
  background: #25D366;
  font-size: 1.7rem;
  animation: pulseWhatsApp 2.5s infinite;
}

.floating-whatsapp span {
  position: absolute;
  right: 66px;
  background: var(--secondary-color);
  color: var(--white-color);
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.floating-whatsapp:hover span {
  opacity: 1;
  transform: translateX(0);
}

.scroll-top {
  bottom: 5.2rem;
  width: 46px;
  height: 46px;
  background: var(--secondary-color);
  color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .main-nav .nav-link {
    display: inline-block;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .showcase-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .amazon-shop-layout {
    grid-template-columns: 1fr;
  }

  .video-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.2rem 0;
  }

  .top-bar .container {
    justify-content: center !important;
  }

  .top-bar span {
    display: none;
  }

  .navbar-brand img {
    width: 96px;
  }

  .hero-section h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-image-wrap::before,
  .stitch-line,
  .page-hero::after {
    display: none;
  }

  .showcase-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-tile {
    border-radius: 15px;
  }

  .contact-info-card,
  .contact-form-panel {
    padding: 1.2rem;
  }

  .amazon-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    max-height: 72vh;
  }
}

@media (max-width: 420px) {
  .showcase-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .scroll-top {
    right: 0.9rem;
  }
}
