:root {
  --navy: #0B1F3A;
  --navy-2: #062845;
  --orange: #FF8C1A;
  --orange-2: #ffb11a;
  --white: #FFFFFF;
  --aqua: #38d6ff;
  --text: #13243a;
  --muted: #6f7f91;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --radius: 16px;
  --shadow: 0 22px 60px rgba(4, 20, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--text);
  background: #f5f9fc;
  font-family: "Cairo", "Poppins", sans-serif;
  overflow-x: hidden;
}

main,
section {
  overflow-x: clip;
}

body.en {
  direction: ltr;
  font-family: "Poppins", "Cairo", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shipping-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1040;
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 36px;
  padding: 7px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), #ff6c00);
  font-size: 0.92rem;
  font-weight: 800;
}

.shipping-banner i {
  margin-left: 6px;
}

.main-nav {
  top: 36px;
  padding: 14px 0;
  background: rgba(11, 31, 58, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.main-nav.nav-scrolled {
  padding: 9px 0;
  background: rgba(11, 31, 58, 0.95);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(255, 140, 26, 0.35);
}

.navbar-brand strong,
.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.navbar-brand small,
.footer-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.brand-logo-img {
  width: auto;
  max-width: 128px;
  height: 42px;
  object-fit: contain;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.btn {
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
  box-shadow: 0 18px 38px rgba(255, 140, 26, 0.32);
}

.btn-orange:hover,
.btn-orange:focus {
  color: var(--white);
  box-shadow: 0 22px 48px rgba(255, 140, 26, 0.42);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 88px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(56, 214, 255, 0.25), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 26, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(11, 31, 58, 0.94), rgba(6, 40, 69, 0.82)),
    url("../images/background.png") center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(0deg, #f5f9fc, rgba(245, 249, 252, 0));
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-section h1,
.section-heading h2,
section h2 {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.18;
}

.hero-section h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
}

.hero-subtitle {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 160px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 38px;
}

.hero-stats div,
.feature-card,
.why-grid article,
.review-card,
.order-form,
.contact-panel,
.included-grid div,
.specs-wrap,
.video-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-stats div {
  padding: 18px 16px;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-product {
  position: relative;
  animation: floatProduct 5s ease-in-out infinite;
}

.hero-product img,
.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: linear-gradient(145deg, rgba(11, 31, 58, 0.82), rgba(6, 40, 69, 0.5));
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.product-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.bubbles span {
  position: absolute;
  bottom: -90px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bubbleRise 12s linear infinite;
  z-index: 1;
}

.bubbles span:nth-child(1) { right: 8%; animation-delay: 0s; }
.bubbles span:nth-child(2) { right: 22%; width: 28px; height: 28px; animation-delay: 2s; }
.bubbles span:nth-child(3) { right: 36%; animation-delay: 5s; }
.bubbles span:nth-child(4) { right: 52%; width: 34px; height: 34px; animation-delay: 1s; }
.bubbles span:nth-child(5) { right: 68%; animation-delay: 4s; }
.bubbles span:nth-child(6) { right: 82%; width: 24px; height: 24px; animation-delay: 7s; }
.bubbles span:nth-child(7) { right: 92%; animation-delay: 3s; }

.section-pad {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.text-center {
  margin-right: auto;
  margin-left: auto;
}

section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

section p {
  color: var(--muted);
  line-height: 1.9;
}

.intro-section {
  background: #f5f9fc;
}

.media-frame {
  position: relative;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.24), rgba(255, 140, 26, 0.22));
  border-radius: 28px;
  z-index: -1;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.mini-list i {
  color: var(--orange);
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 214, 255, 0.15), transparent 28%),
    linear-gradient(145deg, var(--navy), #061426);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  color: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover,
.why-grid article:hover,
.review-card:hover {
  transform: translateY(-7px);
}

.feature-card i,
.why-grid i,
.included-grid i {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
  border-radius: 16px;
  font-size: 1.35rem;
}

.feature-card h3,
.why-grid h3 {
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.gallery-swiper {
  padding: 12px 8px 56px;
}

.gallery-item {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(145deg, #07182d, #0b3354);
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.08);
}

.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 900;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}

.video-section {
  background: linear-gradient(180deg, #f5f9fc, #eaf3f9);
}

.video-card {
  overflow: hidden;
  background: var(--navy);
}

.video-card iframe {
  border: 0;
}

.product-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 0;
}

.product-video-main {
  aspect-ratio: 16 / 9;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.included-grid div {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.included-grid span {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.specs-wrap {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.specs-table {
  margin: 0;
  color: var(--white);
}

.specs-table caption {
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 22px;
}

.specs-table th,
.specs-table td {
  padding: 20px 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.specs-table th {
  color: var(--orange-2);
  font-family: "Poppins", sans-serif;
}

.specs-section {
  position: relative;
}

.specs-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: stretch;
}

.specs-product-card,
.specs-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.specs-product-card {
  overflow: hidden;
}

.specs-product-card img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  background: linear-gradient(145deg, #07182d, #0b3354);
}

.specs-product-card div {
  padding: 26px;
}

.specs-product-card span,
.specs-grid span {
  display: block;
  color: var(--orange-2);
  font-weight: 900;
}

.specs-product-card h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 900;
}

.specs-product-card p,
.specs-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.specs-grid article {
  position: relative;
  min-height: 176px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.specs-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 26, 0.5);
}

.specs-grid article::after {
  content: "";
  position: absolute;
  inset: auto -36px -46px auto;
  width: 126px;
  height: 126px;
  background: rgba(255, 140, 26, 0.11);
  border-radius: 50%;
}

.specs-grid i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
  border-radius: 15px;
}

.specs-grid strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.25s ease;
}

.why-grid article:last-child {
  grid-column: 1 / -1;
}

.usage-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.9), rgba(6, 40, 69, 0.82)),
    url("../images/background.png") center / cover no-repeat fixed;
}

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

.usage-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.usage-tags span {
  padding: 13px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.faq-accordion .accordion-item {
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.08);
}

.faq-accordion .accordion-button {
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--orange);
}

.reviews-section {
  background: linear-gradient(180deg, #ffffff, #edf6fb);
}

.review-card {
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.25s ease;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.stars {
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.review-card p {
  min-height: 88px;
  margin: 12px 0;
}

.review-card strong {
  color: var(--navy);
}

.order-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 140, 26, 0.12), transparent 32%),
    linear-gradient(180deg, #edf6fb, #f7fbfd);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.contact-panel i {
  color: var(--orange);
}

.order-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.form-label {
  color: var(--navy);
  font-weight: 900;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.22rem rgba(255, 140, 26, 0.16);
}

.price-offer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.85fr;
  gap: 12px;
  margin-bottom: 22px;
}

.price-offer div,
.order-summary {
  background: rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: var(--radius);
}

.price-offer div {
  padding: 16px;
}

.price-offer span,
.order-summary span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.price-offer strong,
.price-offer del {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.price-offer del {
  color: #8a98a8;
}

.price-offer .price-now {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
  border-color: rgba(255, 140, 26, 0.28);
}

.price-offer .price-now span,
.price-offer .price-now strong {
  color: var(--white);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.order-summary div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.order-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.order-summary .summary-total {
  background: rgba(255, 140, 26, 0.12);
}

.form-success {
  margin: 14px 0 0;
  color: #0f7a3b;
  font-weight: 900;
}

.cta-banner {
  padding: 44px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-banner p,
.cta-banner h2 {
  margin: 0;
  color: var(--white);
}

.cta-banner h2 {
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #061426;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 1050;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--orange); }
.float-btn.top { background: var(--navy); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.float-btn.top.show { opacity: 1; pointer-events: auto; }

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1045;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.mobile-sticky-cta a {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 58px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-sticky-cta a:nth-child(2) {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff5f00);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 11, 22, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

@keyframes bubbleRise {
  from {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  to {
    transform: translateY(-115vh) scale(1.55);
    opacity: 0;
  }
}

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

@media (max-width: 1199px) {
  .included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .main-nav {
    top: 54px;
  }

  .shipping-banner {
    flex-direction: column;
    gap: 2px;
    align-items: center;
    min-height: 54px;
    font-size: 0.82rem;
  }

  .hero-section {
    padding-top: 178px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

  .why-grid article:last-child {
    grid-column: auto;
  }

  .cta-banner .container,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 128px;
  }

  body {
    padding-bottom: 84px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .price-offer,
  .order-summary {
    grid-template-columns: 1fr;
  }

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

  .specs-product-card img {
    height: 300px;
  }

  .feature-card {
    min-height: 210px;
    padding: 20px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .specs-table th,
  .specs-table td {
    min-width: 180px;
    padding: 16px;
  }
}

@media (max-width: 440px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .shipping-banner {
    padding-inline: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
