:root {
  --brand-red: #ef4444;
  --brand-dark: #111827;
  --soft-gray: #f8fafc;
  --line: #e5e7eb;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #f3f4f6;
  color: #111827;
}

.heading-font {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

.container-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #dc2626;
}

.btn-muted {
  background: #111827;
  color: #fff;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-muted:hover {
  background: #1f2937;
}

.wishlist-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #334155;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.wishlist-btn:hover {
  border-color: #fca5a5;
  color: #dc2626;
}

.wishlist-btn.is-active {
  border-color: #ef4444;
  color: #b91c1c;
  background: #fef2f2;
}

.wishlist-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-share__label {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

.product-share__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.product-share__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-share__btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.product-share__btn svg {
  width: 22px;
  height: 22px;
}

.product-share__btn--pinterest {
  background: #e60023;
}

.product-share__btn--facebook {
  background: #1877f2;
}

.product-share__btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.product-share__btn--x {
  background: #000;
}

.product-share__btn--generic {
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}

.home-widget-carousel {
  position: relative;
}

.home-widget-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.home-widget-carousel__btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.home-widget-carousel__btn:hover {
  border-color: #f87171;
  color: #dc2626;
}

.home-widget-carousel__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.home-widget-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.15rem;
}

.home-widget-track::-webkit-scrollbar {
  display: none;
}

.home-widget-slide {
  flex: 0 0 calc((100% - 4rem) / 5);
  min-width: 210px;
  scroll-snap-align: start;
}

.home-widget-section {
  margin-top: 2.5rem;
}

.home-widget-section--first {
  margin-top: 3.4rem;
}

.home-widget-section__head {
  margin-bottom: 1.25rem;
}

.home-widget-section__head--first {
  margin-bottom: 1.95rem;
}

.badge-sale {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.6rem 0.75rem;
  background: #fff;
  font-size: 0.9rem;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.65rem 0.5rem;
  text-align: left;
  font-size: 0.875rem;
}

.table th {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
}

.cart-table-wrap {
  -webkit-overflow-scrolling: touch;
}

.cart-table {
  min-width: 700px;
}

.cart-table th,
.cart-table td {
  white-space: nowrap;
  vertical-align: top;
}

.cart-table th:first-child,
.cart-table td:first-child {
  white-space: normal;
}

.cart-table th:nth-child(1),
.cart-table td:nth-child(1) {
  min-width: 280px;
}

.cart-table th:nth-child(2),
.cart-table td:nth-child(2),
.cart-table th:nth-child(4),
.cart-table td:nth-child(4) {
  min-width: 100px;
}

.cart-table th:nth-child(3),
.cart-table td:nth-child(3) {
  min-width: 140px;
}

.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
  min-width: 70px;
}

.cart-item-title {
  margin: 0;
  max-width: 240px;
  line-height: 1.22;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item-stock {
  margin-top: 0.12rem;
}

.cart-qty-control {
  white-space: nowrap;
}

.cart-mobile-shell {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 769px) {
  .cart-mobile-shell {
    display: none !important;
  }
}

.cart-mobile-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.65rem;
}

.cart-mobile-head__title {
  margin: 0;
  font-size: 1.95rem;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

.cart-mobile-head__icon {
  width: 44px;
  height: 44px;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  display: grid;
  place-items: center;
}

.cart-mobile-head__icon svg {
  width: 21px;
  height: 21px;
}

.cart-mobile-list {
  display: grid;
  gap: 0.75rem;
}

.cart-mobile-item {
  display: grid;
  grid-template-columns: 1fr 64px;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid #eceff3;
  background: #fff;
}

.cart-mobile-item[data-cart-open] {
  cursor: pointer;
}

.cart-mobile-item[data-cart-open] .cart-mobile-item__body:hover {
  background: #fcfcfd;
}

.cart-mobile-item__body {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.75rem 0.65rem;
}

.cart-mobile-item__image {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.cart-mobile-item__content {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.cart-mobile-item__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-mobile-item__meta {
  margin: 0.24rem 0 0;
  color: #6b7280;
  font-size: 0.78rem;
}

.cart-mobile-item__price {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

.cart-mobile-item__price--only {
  font-size: 2rem;
}

.cart-mobile-item__controls {
  flex-shrink: 0;
  display: grid;
  gap: 0;
  justify-items: end;
}

.cart-mobile-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #edf0f3;
  border-radius: 999px;
  background: #fff;
  padding: 0.12rem;
}

.cart-mobile-item__qty button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-mobile-item__qty button[data-cart-plus] {
  background: #ff6b00;
  color: #fff;
}

.cart-mobile-item__qty span {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  color: #0f172a;
}

.cart-mobile-item__line-total {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.cart-mobile-item__remove {
  border: none;
  background: #ff493a;
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
}

.cart-mobile-item__remove svg {
  width: 22px;
  height: 22px;
}

.cart-mobile-summary {
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 1.05rem;
  padding: 0.85rem;
}

.cart-mobile-coupon {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  margin-bottom: 0.72rem;
}

.cart-mobile-coupon__input.input {
  background: #f9fafb;
  border-color: #edf0f4;
  height: 42px;
}

.cart-mobile-coupon__btn {
  border: 1px solid #edf0f4;
  border-radius: 0.75rem;
  background: #fff;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0 0.95rem;
}

.cart-mobile-coupon__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-mobile-summary__rows {
  display: grid;
  gap: 0.62rem;
}

.cart-mobile-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.cart-mobile-summary__row strong {
  font-size: 1.04rem;
}

.cart-mobile-summary__row--total {
  border-top: 1px solid #eceff4;
  padding-top: 0.62rem;
}

.cart-mobile-checkout {
  margin-top: 0.85rem;
  background: linear-gradient(90deg, #ff6b00, #ff7e1f);
  color: #fff;
  border-radius: 0.95rem;
  min-height: 52px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.cart-mobile-checkout__arrow {
  width: 34px;
  height: 34px;
  border-radius: 0.75rem;
  background: #fff;
  color: #ff6b00;
  display: grid;
  place-items: center;
  margin-left: 0.5rem;
}

.cart-mobile-checkout__arrow svg {
  width: 18px;
  height: 18px;
}

.small-muted {
  color: #6b7280;
  font-size: 0.8rem;
}

.notice {
  border-radius: 0.35rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

.notice-success {
  background: #dcfce7;
  color: #166534;
}

.notice-error {
  background: #fee2e2;
  color: #991b1b;
}

.sticky-summary {
  position: sticky;
  top: 1rem;
}

.checkout-auth-tabs {
  display: none;
}

.checkout-auth-tab {
  border: 1px solid #d1d5db;
  border-bottom-color: transparent;
  background: #fff;
  color: #334155;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.62rem 1rem;
  line-height: 1.1;
}

.checkout-auth-tab.is-active {
  border-color: #ef4444;
  background: #ef4444;
  color: #fff;
}

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  width: min(92vw, 360px);
  display: grid;
  gap: 0.55rem;
}

.toast-item {
  background: #0f172a;
  color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.25);
  padding: 0.72rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.toast-item.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-item__text {
  font-size: 0.9rem;
  font-weight: 600;
}

.toast-item__link {
  font-size: 0.82rem;
  color: #fca5a5;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}

.toast-item__link:hover {
  color: #fecaca;
}

.floating-contact-actions {
  position: fixed;
  right: 0.85rem;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  z-index: 75;
  display: grid;
  gap: 0.55rem;
}

.floating-contact-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.floating-contact-btn svg {
  width: 22px;
  height: 22px;
}

.floating-contact-btn--whatsapp {
  background: #22c55e;
}

.floating-contact-btn--call {
  background: #2563eb;
}

.promo-banner {
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  color: #fff;
}

.promo-banner__link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.promo-banner__link:hover {
  text-decoration: underline;
}

#browseCategories summary::-webkit-details-marker {
  display: none;
}

#browseCategories[open] summary {
  background: #dc2626;
}

.mobile-top-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-top-menu > summary {
  list-style: none;
}

.mobile-top-menu[open] > summary {
  color: #ef4444;
  border-color: #fca5a5;
  background: #fff1f2;
}

.mobile-top-header {
  background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
}

.mobile-top-header__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.mobile-top-header__profile {
  min-width: 0;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-top-header__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fb923c, #f97316);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mobile-top-header__copy {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
}

.mobile-top-header__hello {
  font-size: 0.78rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-top-header__greeting {
  font-size: 1.1rem;
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-top-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-top-header__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 0.7rem;
  border: 1px solid #e5e7eb;
  color: #111827;
  background: #f8fafc;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  position: relative;
}

.mobile-top-header__icon-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-top-header__icon-btn--cart {
  color: #111827;
}

.mobile-top-header__badge {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0 3px;
  border: 1px solid #fff;
}

.mobile-footer-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.08);
  padding: 0.4rem max(0.35rem, env(safe-area-inset-right)) calc(0.4rem + env(safe-area-inset-bottom))
    max(0.35rem, env(safe-area-inset-left));
  backdrop-filter: blur(8px);
}

.mobile-footer-nav__item {
  color: #64748b;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 56px;
  border-radius: 0.55rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-footer-nav__item:hover {
  color: #334155;
  background: #f8fafc;
}

.mobile-footer-nav__item svg {
  width: 22px;
  height: 22px;
}

.mobile-footer-nav__item.is-active {
  color: #ef4444;
}

.mobile-footer-nav__icon-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.mobile-footer-nav__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.65rem;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 1px solid #fff;
}

.admin-layout-body {
  background: #39393a;
}

.admin-shell {
  gap: 0.9rem;
  padding: 0.85rem;
}

.admin-sidebar {
  background: linear-gradient(180deg, #27272d 0%, #1f1f24 100%);
  color: #d4d4da;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.admin-brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
}

.admin-brand__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #cab8ff;
  background: rgba(202, 184, 255, 0.14);
}

.admin-brand__title {
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Barlow Condensed', sans-serif;
}

.admin-brand__menu {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  color: #b8bac3;
  background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.62rem;
  padding: 0.55rem 0.65rem;
  color: #9ea2ad;
  margin-bottom: 0.85rem;
}

.admin-sidebar-search input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  color: #efeff4;
  font-size: 0.86rem;
}

.admin-sidebar-search input::placeholder {
  color: #9ea2ad;
}

.admin-nav {
  display: grid;
  gap: 0.25rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  border-radius: 0.62rem;
  padding: 0.58rem 0.68rem;
  color: #c7c9d1;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.admin-nav-link svg {
  color: #d7dae4;
  flex-shrink: 0;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(1px);
}

.admin-nav-link.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-nav-link.is-danger {
  margin-top: 0.35rem;
  color: #ffd2d2;
}

.admin-nav-link.is-danger:hover,
.admin-nav-link.is-danger.is-active {
  background: rgba(239, 68, 68, 0.22);
  color: #fff;
}

.admin-main {
  min-width: 0;
}

.admin-main-card {
  min-height: calc(100vh - 2rem);
}

@media (max-width: 1200px) {
  .home-widget-slide {
    flex-basis: calc((100% - 3rem) / 4);
  }
}

@media (max-width: 1024px) {
  .home-widget-slide {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

@media (max-width: 768px) {
  .container-shell {
    padding: 0 0.75rem;
  }

  .home-widget-slide {
    flex-basis: calc((100% - 1rem) / 2);
    min-width: 180px;
  }

  .home-widget-section {
    margin-top: 2.1rem;
  }

  .home-widget-section--first {
    margin-top: 2.75rem;
  }

  .home-widget-section__head {
    margin-bottom: 1rem;
  }

  .home-widget-section__head--first {
    margin-bottom: 1.45rem;
  }

  .mobile-top-header__greeting {
    font-size: 1rem;
  }

  .cart-table th,
  .cart-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }

  .cart-table {
    min-width: 700px;
  }

  .cart-item-info {
    gap: 0.5rem;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .cart-item-title {
    max-width: 210px;
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .cart-item-stock {
    font-size: 0.72rem;
  }

  .cart-qty-control button {
    padding: 0.12rem 0.4rem;
    font-size: 1rem;
    line-height: 1;
  }

  .cart-qty-control span {
    padding: 0.12rem 0.45rem;
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .admin-layout-body {
    background: #39393a;
  }

  .admin-shell {
    padding: 0.55rem;
  }

  .admin-main-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .home-widget-slide {
    flex-basis: 85%;
    min-width: 200px;
  }
}

@media (min-width: 769px) {
  .checkout-auth-tabs {
    display: inline-flex;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
  }

  .mobile-top-header {
    display: none;
  }

  .mobile-footer-nav {
    display: none;
  }

  .floating-contact-actions {
    bottom: 1.15rem;
    right: 1.1rem;
  }

  .home-widget-section--first {
    margin-top: 4rem;
  }

  .home-widget-section__head--first {
    margin-bottom: 2.25rem;
  }
}
