:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --surface-strong: #fafafa;
  --text: #171717;
  --muted: #6f6f6f;
  --line: #dddddd;
  --header-bg: #ffffff;
  --footer-bg: #000000;
  --brand: #111111;
  --brand-dark: #000000;
  --accent: #1b1b1b;
  --success: #169c52;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.portfolio-navbar {
  background: var(--header-bg);
  backdrop-filter: blur(10px);
}

.brand-mark {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.portfolio-navbar .navbar-toggler-icon {
  filter: none;
}

.portfolio-navbar .btn-outline-dark {
  color: #111;
  border-color: rgba(17, 17, 17, 0.45);
}

.portfolio-navbar .btn-outline-dark:hover {
  color: #fff;
  background: #111;
  border-color: #111;
}

.btn-brand {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  box-shadow: none;
}

.btn-brand:hover {
  background: #2b2b2b;
  border-color: #2b2b2b;
  color: #fff;
}

.product-copy,
.product-meta,
.site-footer,
.empty-state p,
.catalog-note {
  color: var(--muted);
}

.catalog-page {
  min-height: 100vh;
}

.catalog-shell {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}

.catalog-topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
}

.catalog-title,
.product-info-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.catalog-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.subpage-title {
  /* font-size: clamp(2rem, 4vw, 3rem); */
  font-weight: 800;
}

.navbar-nav .nav-link.active {
    color: #dc3545 !important;
    font-weight: 700;
    border-bottom: 2px solid #dc3545;
}



.subpage-copy {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.product-card,
.gallery-thumb,
.gallery-main,
.product-info-card,
.info-card,
.empty-state {
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-art {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: top center;
  border-bottom: 1px solid var(--line);
}

.product-card-body {
  padding: 1rem 1.15rem 1.1rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-price {
  margin-top: 0.35rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #000;
}

.site-footer {
  border-top: 1px solid var(--footer-bg);
  background: var(--footer-bg);
  color: #fff;
}

.site-footer p {
  color: #fff;
}

.subpage-wrap,
.product-page-wrap {
  min-height: calc(100vh - 144px);
  background: #f7f7f7;
}

.product-detail-layout {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.section-intro {
  max-width: 840px;
}

.gallery-main {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.gallery-main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}

.gallery-thumb {
  padding: 0.3rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  border-radius: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  transform: translateY(-2px);
  border-color: #9f9f9f;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.product-info-card {
  padding: 0.5rem 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 1rem 0 1.4rem;
}

.meta-pill {
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  background: #f1f1f1;
  color: var(--accent);
  font-weight: 700;
}

.product-description {
  color: #3e3e3e;
  font-size: 1.06rem;
  line-height: 1.75;
}

.product-copy.lead {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #2c2c2c;
}

.product-section-label {
  display: block;
  margin: 1.75rem 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #3f3f3f;
  line-height: 1.7;
}

.feature-list li + li {
  margin-top: 0.2rem;
}

.disclaimer-text {
  margin-top: 0.9rem;
  color: #4f4f4f;
  line-height: 1.7;
}

.price-block {
  margin-top: 1.8rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0;
}

.action-stack .btn {
  width: 100%;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  font-weight: 800;
}

.info-card {
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.info-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
}

.contact-side {
  padding: 0.35rem 0;
}

.contact-list-large {
  max-width: 620px;
  gap: 1rem;
}

.contact-list-large p {
  color: #2c2c2c;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.8);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

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

.contact-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #454545;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-action-row .btn {
  min-width: 170px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  font-weight: 800;
}

.contact-master-card {
  border-radius: 24px;
  border-color: #e1e1e1;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.contact-form-shell {
  height: 100%;
  padding-left: 1rem;
  border-left: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-form-card {
  border-radius: 20px;
  border-color: #e1e1e1;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.contact-form-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-form-layout {
  margin-top: 1.5rem;
}

.custom-form-label {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.custom-form-control {
  min-height: 54px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  box-shadow: none;
  background: #fff;
}

.custom-form-control:focus {
  border-color: #8f8f8f;
  box-shadow: 0 0 0 0.18rem rgba(17, 17, 17, 0.06);
}

.custom-textarea {
  min-height: 240px;
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-story-board {
  padding: 1.2rem;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: var(--shadow);
}

.about-story-card {
  padding: 1.8rem;
  border: 1px solid #ededed;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-kicker {
  margin: 0 0 1rem;
  color: #e2741e;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  color: #111;
}

.about-copy {
  max-width: 100%;
  margin: 2rem 0 0;
  color: #525252;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-visual-stack {
  display: flex;
  flex-direction: column;
  height: 70%;
  min-height: 70%;
}

.about-visual-card {
  flex: 1 1 auto;
  position: relative;
  min-height: 400px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #bcd5f7 0%, #a7c5f0 100%);
}

.about-stat-grid-row {
  margin-top: 0.75rem;
  flex: 0 0 auto;
}

.about-visual-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 8%, rgba(255,255,255,0.35) 8% 18%, transparent 18% 34%, rgba(255,255,255,0.24) 34% 46%, transparent 46% 62%, rgba(255,255,255,0.18) 62% 72%, transparent 72% 100%);
}

.about-visual-people {
  position: absolute;
  inset: auto 0 0 0;
  height: 92%;
}

.about-person {
  position: absolute;
  bottom: 0;
}

.about-person .about-head {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(180deg, #efc2a1 0%, #dca175 100%);
}

.about-person .about-body {
  margin-top: 0.8rem;
  border-radius: 34px;
}

.person-back {
  left: 16%;
  width: 33%;
}

.person-back .about-head {
  margin-left: 24%;
}

.person-back .about-body {
  height: 252px;
  background: linear-gradient(180deg, #283246 0%, #1c2433 100%);
}

.person-front {
  right: 14%;
  width: 35%;
}

.person-front .about-head {
  margin-left: 30%;
}

.person-front .about-body {
  height: 214px;
  background: linear-gradient(180deg, #1f2430 0%, #12161f 100%);
}

.about-laptop {
  position: absolute;
  left: 34%;
  bottom: 14%;
  width: 35%;
  height: 96px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #f3c9cf 0%, #ebb8c0 100%);
  box-shadow: 0 20px 32px rgba(90, 80, 100, 0.18);
}

.about-stat-card {
  height: 100%;
  padding: 1.1rem 1.1rem;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.about-stat-card strong {
  display: block;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.about-stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: #5f5f5f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.why-concept-board {
  padding: 2rem;
  border: 1px solid #e4e4e4;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
  box-shadow: var(--shadow);
}

.why-concept-header {
  margin-bottom: 1.5rem;
}

.why-concept-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #171717;
}

.why-concept-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #111111, #666666);
}

.why-benefit-stack {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.why-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.why-benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #171717;
}

.why-benefit-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.why-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 14px;
  background: #fff;
}

.why-benefit-icon svg {
  width: 28px;
  height: 28px;
}

.why-benefit-icon.blue {
  color: #111;
  background: #f1f1f1;
}

.why-benefit-icon.purple {
  color: #111;
  background: #f5f5f5;
}

.why-benefit-icon.coral {
  color: #111;
  background: #f3f3f3;
}

.why-benefit-icon.green {
  color: #111;
  background: #f0f0f0;
}

.why-visual-stage {
  display: flex;
  justify-content: center;
  height: 100%;
}
.why-visual-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 560px;
    background: #f8f9fa;
    border: 1px solid #ececec;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.why-visual-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.why-visual-frame:hover .why-visual-image{
    transform:scale(1.05);
}

.why-visual-glow{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 10%,
        rgba(0,0,0,.15) 100%
    );
    z-index:1;
}

.why-preview-badge{
    position:absolute;
    top:20px;
    right:20px;
    z-index:2;
    padding:8px 18px;
    background:#fff;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-floating-chip{
    position:absolute;
    z-index:2;
    padding:10px 18px;
    background:#fff;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.top-left{
    top:25px;
    left:25px;
}

.bottom-left{
    bottom:25px;
    left:25px;
}
.why-visual-frame {
  position: relative;
  width: min(100%, 560px);
  min-height: 100%;
  padding: 1rem;
  border: 1px solid #dedede;
  border-radius: 52px 16px 52px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.why-visual-glow {
  position: absolute;
  inset: 18% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
}

.why-single-visual {
  position: relative;
  min-height: 680px;
  height: 100%;
  border-radius: 38px 14px 38px 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0)),
    linear-gradient(180deg, #fbfbfb 0%, #ececec 100%);
  border: 1px solid #ececec;
  overflow: hidden;
}

.why-preview-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-floating-chip {
  position: absolute;
  left: 18px;
  z-index: 2;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #202020;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-floating-chip.top-left {
  top: 18px;
}

.why-floating-chip.bottom-left {
  bottom: 18px;
}

.why-single-figure {
  position: absolute;
  inset: auto 0 26px 0;
  margin: auto;
  width: 76%;
  height: 84%;
}

.why-figure-head {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2c4a4 0%, #e2a97d 100%);
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.05);
}

.why-figure-body {
  width: 72%;
  height: 56%;
  margin: 0.9rem auto 0;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
    linear-gradient(180deg, #2e2e2e 0%, #4e4e4e 100%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.why-figure-arm {
  position: absolute;
  top: 24%;
  width: 12%;
  height: 34%;
  border-radius: 24px;
  background: linear-gradient(180deg, #d69b73 0%, #c7845f 100%);
}

.why-figure-arm.left {
  left: 19%;
  transform: rotate(8deg);
}

.why-figure-arm.right {
  right: 19%;
  transform: rotate(-8deg);
}

.why-figure-leg {
  position: absolute;
  bottom: 4%;
  width: 24%;
  height: 36%;
  border-radius: 28px;
  background: linear-gradient(180deg, #6a7389 0%, #4c5469 100%);
}

.why-figure-leg.left {
  left: 25%;
  transform: rotate(5deg);
}

.why-figure-leg.right {
  right: 25%;
  transform: rotate(-5deg);
}

.related-section {
  border-top: 1px solid var(--line);
}

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
}


.floating-contact-stack {
    position: fixed;
    right: 18px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.floating-contact-link {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
}

.floating-contact-link:hover {
    transform: translateY(-4px) scale(1.04);
}

.floating-contact-link img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.floating-contact-link::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    animation: floatingPulse 1.8s infinite;
}

.floating-contact-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 14px 32px rgba(18, 140, 126, 0.32);
}

.floating-contact-link.whatsapp::before {
    border: 2px solid rgba(37, 211, 102, 0.22);
}

.floating-contact-link.call {
    background: linear-gradient(135deg, #ff8a00, #e65100);
    box-shadow: 0 14px 32px rgba(230, 81, 0, 0.3);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.floating-contact-link.call::before {
    border: 2px solid rgba(255, 138, 0, 0.22);
}

/*Product Cart*/
.catalog-topbar {
    padding: 20px 0 10px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 22px;
}

.catalog-topbar-copy {
    max-width: 720px;
}

.catalog-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #714831;
}

.catalog-title {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.catalog-note {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 620px;
}

@media (max-width: 575px) {
    .catalog-title {
        font-size: 26px;
    }

    .catalog-note {
        font-size: 13px;
    }
}

.catalog-loader {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.catalog-spinner {
    width: 46px;
    height: 46px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #111827;
    border-radius: 50%;
    animation: catalogSpin 0.8s linear infinite;
}

@keyframes catalogSpin {
    100% {
        transform: rotate(360deg);
    }
}
.product-col {
    display: flex;
}

.product-card-wrap {
    width: 100%;
    background: #fff;
    border: 1px solid #d9dce3;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-card-image-box {
    width: 100%;
    aspect-ratio: 1 / 1.28;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.product-card-wrap:hover .product-card-image {
    transform: scale(1.03);
}

.product-card-info {
    border-top: 1px solid #d9dce3;
    padding: 14px 16px 16px;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.product-card-title {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: #111827;
}

.product-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

@media (max-width: 991px) {
    .product-card-image-box {
        aspect-ratio: 1 / 1.22;
    }
}

@media (max-width: 575px) {
    #product-list > [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
    }

    .product-card-wrap {
        width: 100%;
    }

    .product-card-image-box {
        width: 100%;
        aspect-ratio: 1 / 1.25;
    }

    .product-card-info {
        min-height: auto;
        padding: 14px 14px 16px;
    }

    .product-card-title {
        font-size: 15px;
        line-height: 1.4;
    }

    .product-card-price {
        font-size: 15px;
    }
}

@keyframes floatingPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.85;
    }

    70% {
        transform: scale(1.08);
        opacity: 0;
    }

    100% {
        transform: scale(1.08);
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .floating-contact-stack {
        right: 12px;
        bottom: 80px;
        gap: 15px;
    }

    .floating-contact-link {
        width: 58px;
        height: 58px;
    }

    .floating-contact-link img {
        width: 28px;
        height: 28px;
    }

    .floating-contact-link.call {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
  .catalog-topbar {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .catalog-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-side,
  .product-detail-layout,
  .product-info-card,
  .info-card {
    padding: 1.5rem;
  }

  .product-info-card {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .contact-side {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-item {
    padding: 0.95rem;
  }

  .contact-form-shell {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #ececec;
    padding-top: 1.5rem;
  }

  .about-story-board,
  .why-concept-board {
    padding: 1.5rem;
  }

  .about-story-card {
    padding: 1.4rem;
  }

  .about-copy {
    max-width: 50%;
  }

  .about-visual-card {
    min-height: 400px;
  }

  .why-visual-frame {
    min-height: auto;
  }

  .why-single-visual {
    min-height: 480px;
  }
}
