/* ==========================================================
   Local fonts
   ========================================================== */

/* Poppins — body and UI */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f7efe2;
  --cream-light: #fffaf1;
  --orange: #ef7622;
  --orange-deep: #df6416;
  --red: #bc2d26;
  --navy: #17234e;
  --ink: #171717;
  --green: #54c300;
  --white: #fff;
  --content: 1276px;
  --font-body: "Poppins", sans-serif;
  --font-display: "Poppins", sans-serif;
  --font-display-weight: 700;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 86px; background: var(--cream); color: var(--ink); font-family: var(--font-body); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-synthesis: none; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; transform: translateY(-160%); background: var(--navy); color: white; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 4px; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; background: var(--cream); }
.site-header.is-scrolled { background: rgba(247, 239, 226, .96); border-bottom: 1px solid rgba(23, 35, 78, .12); box-shadow: 0 4px 18px rgba(23, 35, 78, .08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav-shell { height: 86px; max-width: 1365px; margin: auto; padding: 0 42px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 40px; }
.brand-logo { width: 128px; }
.brand-logo img { width: 100%; height: auto; }
.primary-menu { justify-self: center; display: flex; align-items: center; gap: clamp(34px, 4vw, 66px); }
.primary-menu a { position: relative; text-decoration: none; color: var(--orange); font-size: 15px; font-weight: 700; letter-spacing: .01em; }
.primary-menu a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: center; transition: transform .24s ease; }
.primary-menu a.is-active::after { transform: scaleX(1); }
.primary-menu a:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-switcher { position: relative; color: var(--orange); font-size: 12px; font-weight: 700; white-space: nowrap; }
.language-switcher__trigger { min-height: 40px; padding: 8px 11px; display: inline-flex; align-items: center; gap: 7px; border: 2px solid var(--orange); border-radius: 24px; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.language-switcher__globe { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.language-switcher__chevron { width: 7px; height: 7px; margin: -3px 0 0 1px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
.language-switcher__trigger[aria-expanded="true"] .language-switcher__chevron { margin-top: 3px; transform: rotate(225deg); }
.language-switcher__menu { position: absolute; z-index: 60; top: calc(100% + 8px); right: 0; width: max-content; min-width: 166px; padding: 6px; border: 1px solid rgba(23, 35, 78, .16); border-radius: 14px; background: var(--cream-light); box-shadow: 0 12px 28px rgba(23, 35, 78, .16); }
.language-switcher__menu[hidden] { display: none; }
.language-switcher__option { width: 100%; min-height: 38px; padding: 9px 11px; display: flex; align-items: center; border-radius: 9px; color: var(--navy); text-decoration: none; font-weight: 600; }
.language-switcher__option[href]:hover, .language-switcher__option[href]:focus-visible { background: rgba(239, 118, 34, .12); }
.language-switcher__option--current { color: var(--orange); background: rgba(239, 118, 34, .09); cursor: default; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; margin: 5px 0; background: var(--navy); transition: transform .2s, opacity .2s; }
.commerce-cta { gap: 0; text-decoration: none; }
.commerce-cta--disabled { opacity: .58; cursor: not-allowed; }
.commerce-cta__status { font-size: .82em; font-weight: 500; }
.nav-shop-cta { min-height: 40px; padding: 8px 16px; white-space: nowrap; }

.hero { overflow: hidden; background: var(--orange); }
.hero img { width: 100%; height: auto; aspect-ratio: 1920 / 900; object-fit: cover; object-position: center; }
#hero, #about-us, #products, #sun101-hub { scroll-margin-top: 86px; }

.fun-experts { width: min(calc(100% - 64px), 1280px); margin: 0 auto 48px; display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.fun-photo { min-height: 360px; overflow: hidden; }
.fun-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.fun-copy { display: grid; place-items: center; padding: 50px 62px; background: #ff7f1f; color: var(--cream-light); }
.fun-copy > div { width: 100%; max-width: 410px; }
.fun-copy h2 { max-width: 520px; margin-bottom: 22px; font: var(--font-display-weight) clamp(38px, 3.2vw, 48px)/1 var(--font-display); letter-spacing: -.045em; }
.fun-copy p { margin-bottom: 0; font-size: clamp(16px, 1.18vw, 18px); line-height: 1.5; text-align: justify; text-align-last: left; }

.about { position: relative; background: rgba(255, 250, 241, .92); }
.about-heading-row { position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 112px; padding: 0 max(32px, calc((100% - var(--content)) / 2 + 32px)); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: rgba(255, 250, 241, .92); }
.about-heading-row h2, .products-video > h2 { margin: 0; color: var(--orange); font: var(--font-display-weight) clamp(24px, 2.45vw, 36px)/1 var(--font-display); letter-spacing: -.035em; }
.about-deg-logo { width: min(320px, 30vw); height: auto; object-fit: contain; flex: 0 1 auto; }

.video-shell { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #191919; }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-shell--about iframe, .video-shell--autoplay iframe { pointer-events: none; }
.video-sound-toggle { position: absolute; z-index: 3; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px); width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, .72); border-radius: 50%; background: rgba(17, 17, 17, .76); color: white; box-shadow: 0 5px 16px rgba(0, 0, 0, .22); cursor: pointer; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.video-sound-toggle:hover { background: rgba(17, 17, 17, .9); }
.video-sound-toggle svg { width: 24px; height: 24px; overflow: visible; }
.video-sound-toggle path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.video-sound-toggle__speaker { fill: currentColor !important; stroke: none !important; }
.video-sound-toggle[data-sound="off"] .video-sound-toggle__waves, .video-sound-toggle[data-sound="on"] .video-sound-toggle__muted { display: none; }
.video-playback-toggle { position: absolute; z-index: 3; right: calc(clamp(14px, 2vw, 28px) + 58px); bottom: clamp(14px, 2vw, 28px); width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, .72); border-radius: 50%; background: rgba(17, 17, 17, .76); color: white; box-shadow: 0 5px 16px rgba(0, 0, 0, .22); cursor: pointer; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.video-playback-toggle:hover { background: rgba(17, 17, 17, .9); }
.video-sound-toggle:focus-visible, .video-playback-toggle:focus-visible { outline: 3px solid white; outline-offset: 2px; }
.video-playback-toggle__pause { position: relative; width: 14px; height: 18px; border-inline: 4px solid currentColor; }
.video-playback-toggle__play { width: 0; height: 0; margin-left: 3px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid currentColor; }
.video-playback-toggle[data-playing="true"] .video-playback-toggle__play, .video-playback-toggle[data-playing="false"] .video-playback-toggle__pause { display: none; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; overflow: hidden; background: linear-gradient(135deg, #5f3f27, #ef7622); cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.play-icon { position: absolute; top: 50%; left: 50%; width: 88px; height: 62px; transform: translate(-50%, -50%); border-radius: 16px; background: rgba(220, 0, 0, .95); box-shadow: 0 8px 25px rgba(0, 0, 0, .25); }
.play-icon::after { content: ""; position: absolute; top: 16px; left: 35px; border-width: 15px 0 15px 24px; border-style: solid; border-color: transparent transparent transparent white; }

.deg-story { width: min(calc(100% - 64px), var(--content)); margin: 48px auto; display: grid; grid-template-columns: 30% 70%; min-height: 0; }
.deg-visual { display: grid; place-items: center; min-height: 0; padding: 52px; background: var(--red); overflow: hidden; }
.deg-visual img { width: min(280px, 100%); height: auto; }
.deg-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 34px; padding: 78px; background: var(--cream-light); text-align: left; }
.deg-copy h2 { margin: 0; color: var(--red); font: var(--font-display-weight) clamp(39px, 4.7vw, 68px)/1.07 var(--font-display); letter-spacing: -.045em; }
.deg-copy p { width: 100%; max-width: none; margin: 0; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.72; text-align: justify; text-align-last: left; }
html[lang="vi"] .deg-copy h2 { font-size: clamp(45px, 3.65vw, 56px); line-height: 1.3; }

.products-video { position: relative; background: var(--cream); }
.products-video > h2 { position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 108px; max-width: none; margin: 0; padding: 0 max(32px, calc((100% - var(--content)) / 2 + 32px)); display: flex; align-items: center; background: rgba(255, 250, 241, .82); }

.section-pad { max-width: 1365px; margin: auto; padding: 100px 44px; }
.section-pad > h2 { margin-bottom: 62px; text-align: center; text-wrap: balance; font: var(--font-display-weight) clamp(36px, 4vw, 56px)/1.05 var(--font-display); letter-spacing: -.045em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.feature-card { text-align: center; }
.feature-card img { width: 255px; height: 255px; margin: 0 auto 28px; object-fit: contain; }
.feature-card h3 { margin-bottom: 14px; text-wrap: balance; font: var(--font-display-weight) clamp(22px, 2vw, 29px)/1.15 var(--font-display); }
.feature-card p { max-width: 380px; margin: auto; font-size: 17px; line-height: 1.65; }

.shop { padding-top: 70px; }
.shop-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 502px)); justify-content: center; gap: 68px; }
.shop-card { overflow: hidden; aspect-ratio: 502 / 627; border-radius: 20px; }
.shop-card img { width: 100%; height: 100%; object-fit: cover; }
.commerce-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
.shop-commerce-ctas { justify-content: center; margin-top: 30px; }
.commerce-cta--marketplace { min-width: 176px; }

.products { padding-top: 86px; }
.product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 74px 55px; }
.product-card { flex: 0 1 calc((100% - 110px) / 3); min-width: 0; text-align: center; }
.product-card-trigger { width: 100%; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-align: inherit; cursor: pointer; }
.product-card-trigger:focus-visible { outline: 3px solid var(--navy); outline-offset: 6px; }
.product-media { position: relative; width: 100%; height: min(30vw, 390px); aspect-ratio: 1; overflow: hidden; border-radius: 20px; background: white; }
.product-media img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; border-radius: 20px; transition: opacity .75s ease; }
.product-image--hover { opacity: 0; }
@media (hover: hover) {
  .product-card:hover .product-image--default { opacity: 0; }
  .product-card:hover .product-image--hover { opacity: 1; }
}
.product-card h3 { max-width: 380px; margin: 22px auto 0; font-size: 19px; line-height: 1.45; font-weight: var(--font-display-weight); font-family: var(--font-display); text-wrap: balance; overflow-wrap: break-word; }

body.product-modal-open { overflow: hidden; }
.product-modal[hidden] { display: none !important; }
.product-modal { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 24px; }
.product-modal__backdrop { position: absolute; inset: 0; background: rgba(23, 23, 23, .5); opacity: 0; transition: opacity 220ms cubic-bezier(.22, 1, .36, 1); }
.product-modal__dialog { position: relative; z-index: 1; width: min(980px, 100%); max-height: min(88vh, 820px); overflow: auto; padding: 34px; background: var(--cream-light); color: var(--ink); border-radius: 24px; box-shadow: 0 22px 60px rgba(0, 0, 0, .28); opacity: 0; transform: translateY(8px) scale(.98); transition: opacity 220ms cubic-bezier(.22, 1, .36, 1), transform 220ms cubic-bezier(.22, 1, .36, 1); }
.product-modal.is-open .product-modal__backdrop { opacity: 1; }
.product-modal.is-open .product-modal__dialog { opacity: 1; transform: translateY(0) scale(1); }
.product-modal__close { position: absolute; z-index: 2; top: 14px; right: 16px; width: 38px; height: 38px; padding: 0; border: 0; background: transparent; color: var(--ink); font-size: 32px; line-height: 1; cursor: pointer; }
.product-modal__close:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.product-modal__layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 44px; align-items: start; }
.product-modal__gallery { position: sticky; top: 0; min-width: 0; }
.product-modal__media { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 20px; background: white; }
.product-modal__slides { height: 100%; }
.product-modal__slide { display: none; width: 100%; height: 100%; }
.product-modal__slide.is-active { display: block; }
.product-modal__slide img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__thumbnails { display: grid; grid-template-columns: repeat(auto-fit, minmax(52px, 1fr)); gap: 10px; margin-top: 12px; }
.product-modal__thumbnail { aspect-ratio: 1; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 10px; background: white; cursor: pointer; }
.product-modal__thumbnail.is-active { border-color: var(--orange); }
.product-modal__thumbnail:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.product-modal__thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-modal__gallery-control { position: absolute; z-index: 1; top: 50%; display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid rgba(23, 23, 23, .08); border-radius: 50%; background: rgba(255, 255, 255, .55); color: var(--ink); font-size: 22px; line-height: 1; transform: translateY(-50%); cursor: pointer; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.product-modal__gallery-control--previous { left: 12px; }
.product-modal__gallery-control--next { right: 12px; }
.product-modal__gallery-control:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.product-modal__gallery-control:disabled { opacity: .45; cursor: not-allowed; }
.product-modal__content { min-width: 0; padding-right: 14px; }
.product-modal__content h2 { margin: 0 44px 16px 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); line-height: 1.08; font-weight: var(--font-display-weight); }
.product-modal__content > p { margin: 0 0 24px; font-size: 16px; line-height: 1.65; }
.product-modal__content section + section { margin-top: 24px; }
.product-modal__content h3 { margin: 0 0 10px; color: var(--orange); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.product-modal__content ul { display: grid; gap: 8px; padding-left: 20px; list-style: disc; }
.product-modal__content li { padding-left: 2px; font-size: 15px; line-height: 1.5; }
.product-modal__content dl { display: grid; grid-template-columns: minmax(110px, .55fr) 1fr; gap: 8px 18px; margin: 0; }
.product-modal__content dt { font-weight: 600; }
.product-modal__content dd { margin: 0; }
.product-modal__buy { margin-top: 24px; }
.product-modal__commerce { margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
  .product-modal__backdrop,
  .product-modal__dialog { transition: none; }
}

.spotlight { padding-top: 84px; }
.spotlight-heading { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.spotlight-heading p { margin-bottom: 4px; font-size: 18px; font-weight: 600; letter-spacing: .08em; }
.spotlight-heading h2 { margin: 0; font: var(--font-display-weight) clamp(36px, 4vw, 56px)/1 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 26px; background: var(--orange); color: white; border-radius: 4px; font-weight: 700; font-size: 13px; text-align: center; }
.button-disabled { opacity: .78; cursor: not-allowed; }
.spotlight-grid { width: min(100%, 1168px); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spotlight-grid li { overflow: hidden; border-radius: 28px; }
.spotlight-grid img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 28px; transition: transform .28s ease; }
@media (hover: hover) {
  .spotlight-grid li:hover img { transform: scale(1.04); }
}

.sun-hub { padding-bottom: 98px; background: var(--cream); }
.sun-hero { position: relative; height: clamp(600px, 38vw, 780px); overflow: hidden; }
.sun-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 65%); }
.sun-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.sun-hero > div { position: absolute; z-index: 1; top: 48px; left: max(44px, calc((100vw - var(--content)) / 2)); max-width: 560px; color: white; }
.sun-hero p { margin-bottom: 6px; font-size: 23px; font-weight: 700; letter-spacing: .06em; }
.sun-hero h2 { margin: 0; font: var(--font-display-weight) clamp(42px, 5vw, 68px)/1 var(--font-display); letter-spacing: -.05em; text-wrap: balance; }
.article-grid { position: relative; z-index: 2; max-width: 1224px; margin: -180px auto 0; padding: 0 20px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 36px; }
.article-card { min-width: 0; display: flex; flex-direction: column; text-align: center; }
.article-card img { display: block; width: 100%; height: calc((min(1224px, 100vw - 40px) - 112px) / 3); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, .13); }
.article-card h3 { width: 100%; min-height: 60px; margin: 12px auto 4px; font-family: var(--font-display); font-size: 20px; line-height: 1.35; font-weight: var(--font-display-weight); text-align: center; text-wrap: balance; overflow-wrap: break-word; }
.article-card a { display: inline-block; align-self: center; margin-top: auto; padding: 9px 24px; background: #111; color: white; border-radius: 999px; text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; }

.faq { padding-top: 88px; }
.faq-list { width: min(100%, 980px); margin: 0 auto; border-top: 1px solid rgba(23, 35, 78, .22); }
.faq-item { border-bottom: 1px solid rgba(23, 35, 78, .22); }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 0; background: transparent; color: var(--navy); font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.4; font-weight: var(--font-display-weight); text-align: left; cursor: pointer; }
.faq-icon { flex: 0 0 auto; color: var(--orange); font-size: 28px; line-height: 1; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer p { margin: 0; padding: 0 52px 26px 4px; font-size: 16px; line-height: 1.7; }
.faq-toggle { margin: 36px auto 0; border: 0; cursor: pointer; }

.sun101-nav__listing { justify-self: center; color: var(--orange); font-weight: 700; text-decoration: none; }
.sun101-nav--listing { grid-template-columns: 180px 1fr auto; }
.sun101-nav__links { justify-self: center; display: flex; align-items: center; gap: 28px; }
.sun101-nav__home, .sun101-nav--listing .sun101-nav__listing { color: var(--orange); font-size: 15px; font-weight: 700; text-decoration: none; }
.sun101-nav__home { color: var(--navy); }
.sun101-page { width: min(calc(100% - 48px), 1180px); min-height: calc(100vh - 190px); margin: 0 auto; padding: 58px 0 100px; }
.sun101-listing-heading { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.sun101-listing-home { margin-bottom: 20px; }
.sun101-home-back { display: inline-block; padding: 9px 24px; border-radius: 999px; background: #111; color: white; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.sun101-listing-heading > p:first-child, .sun101-article__eyebrow { margin-bottom: 8px; color: var(--orange); font-size: 15px; font-weight: 700; letter-spacing: .08em; }
.sun101-listing-heading h1, .sun101-article h1 { margin-bottom: 18px; color: var(--navy); font: var(--font-display-weight) clamp(40px, 5vw, 68px)/1.06 var(--font-display); letter-spacing: -.045em; text-wrap: balance; overflow-wrap: break-word; }
.sun101-listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 42px 32px; }
.sun101-listing-card { min-width: 0; display: flex; flex-direction: column; }
.sun101-listing-card > a:first-child { display: block; }
.sun101-listing-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 20px; }
.sun101-listing-card h2 { min-height: calc(3 * 1.35em); margin: 18px 0 10px; font-family: var(--font-display); font-size: 22px; line-height: 1.35; text-wrap: balance; overflow-wrap: anywhere; }
.sun101-listing-card h2 a { text-decoration: none; }
.sun101-listing-card p { min-height: calc(4 * 1.65em); margin-bottom: 22px; font-size: 15px; line-height: 1.65; }
.sun101-read-more { align-self: flex-start; margin-top: auto; padding: 9px 24px; border-radius: 999px; background: #111; color: white; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.sun101-back { display: inline-block; color: var(--orange); font-size: 14px; font-weight: 700; }
.sun101-breadcrumb { margin-bottom: 42px; font-size: 13px; }
.sun101-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sun101-breadcrumb li + li::before { margin-right: 8px; content: '/'; opacity: .55; }
.sun101-breadcrumb li[aria-current="page"] { opacity: .72; }
.sun101-article { max-width: 900px; margin: 0 auto; }
.sun101-article > header { margin-bottom: 38px; }
.sun101-article__excerpt { max-width: 760px; font-size: 18px; line-height: 1.7; }
.sun101-article__image { width: 100%; height: auto; max-height: 760px; object-fit: cover; border-radius: 24px; }
.sun101-article__content { margin: 44px 0; font-size: 17px; line-height: 1.75; }
.sun101-article__content h2 { margin: 42px 0 14px; color: var(--navy); font-family: var(--font-display); font-size: clamp(25px, 3vw, 34px); line-height: 1.2; }
.sun101-article__content h3 { margin: 32px 0 12px; color: var(--navy); font-family: var(--font-display); font-size: 22px; }
.sun101-article__content ul { margin: 0 0 24px; padding-left: 24px; list-style: disc; }
.sun101-article__content li + li { margin-top: 8px; }
.sun101-content-placeholder { padding: 28px; border-left: 4px solid var(--orange); background: var(--cream-light); }
.sun101-page-footer { padding: 30px 24px; border-top: 1px solid rgba(23, 35, 78, .12); background: var(--cream-light); font-size: 12px; text-align: center; }

.site-footer { padding: 76px 44px 30px; background: var(--cream-light); border-top: 1px solid rgba(0, 0, 0, .08); }
.footer-grid { max-width: var(--content); margin: auto; display: grid; grid-template-columns: minmax(300px, 2fr) repeat(4, minmax(0, 1fr)); gap: 54px; }
.footer-brand img { width: 180px; height: auto; margin-bottom: 22px; }
.footer-brand p { max-width: 430px; font-size: 14px; }
.footer-brand address { font-style: normal; font-size: 14px; }
.footer-grid h2 { color: var(--orange); font-family: var(--font-display); font-size: 16px; font-weight: var(--font-display-weight); text-transform: uppercase; }
.footer-grid li { margin-bottom: 12px; font-size: 14px; }
.footer-grid a { text-decoration: none; }
.footer-grid span[aria-disabled="true"] { opacity: .6; }
.footer-social-cta, .footer-contact-cta { min-height: 0; padding: 0; background: transparent; color: inherit; border-radius: 0; justify-content: flex-start; font-size: inherit; font-weight: inherit; text-align: left; }
.footer-social-cta.button-disabled, .footer-contact-cta.button-disabled { opacity: .6; }
.footer-bottom { max-width: var(--content); margin: 54px auto 0; padding-top: 24px; border-top: 1px solid rgba(0, 0, 0, .12); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-disclaimer { max-width: var(--content); margin: 14px auto 0; font-size: 11px; line-height: 1.55; opacity: .72; }

@media (max-width: 1050px) {
  .nav-shell { padding: 0 24px; grid-template-columns: 145px 1fr auto; gap: 20px; }
  .primary-menu { gap: 22px; }
  .primary-menu a { font-size: 13px; }
  .fun-copy, .deg-copy { padding: 56px; }
  .section-pad { padding-inline: 32px; }
  .product-grid { gap: 55px 34px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1051px) {
  .fun-experts { aspect-ratio: 1280 / 414; }
  .fun-photo { min-height: 0; }
}

@media (max-width: 820px) {
  body { padding-top: 68px; }
  #hero, #about-us, #products, #sun101-hub { scroll-margin-top: 68px; }
  .nav-shell { position: relative; height: 68px; grid-template-columns: 1fr auto auto; }
  .brand-logo { width: 105px; }
  .menu-toggle { display: block; grid-column: 3; }
  .nav-actions { grid-column: 2; grid-row: 1; gap: 8px; }
  .language-switcher { font-size: 11px; }
  .language-switcher__trigger { min-height: 36px; padding: 7px 9px; gap: 6px; }
  .nav-shop-cta { min-height: 34px; padding: 7px 10px; font-size: 11px; }
  .primary-menu { position: absolute; z-index: 5; top: calc(100% + 2px); right: 24px; left: auto; width: min(224px, calc(100vw - 48px)); display: none; padding: 16px 20px 20px; background: var(--cream-light); border-radius: 0 0 14px 14px; box-shadow: 0 12px 24px rgba(0, 0, 0, .12); }
  .primary-menu.is-open { display: block; }
  .primary-menu li + li { margin-top: 14px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .fun-experts, .deg-story { grid-template-columns: 1fr; }
  .fun-photo { min-height: 72vw; max-height: 640px; }
  .fun-copy, .deg-copy { padding: 60px 34px; }
  .about-heading-row { height: 96px; padding-inline: 28px; }
  .about-deg-logo { width: min(260px, 38vw); }
  .deg-story { width: min(calc(100% - 48px), var(--content)); margin-block: 48px; }
  .deg-visual { min-height: 0; padding: 48px; }
  .feature-grid { gap: 25px; }
  .feature-card img { width: 200px; height: 200px; }
  .shop-grid { gap: 28px; }
  .product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card { width: auto; flex: none; }
  .product-modal__dialog { max-height: 90vh; padding: 28px; }
  .product-modal__layout { gap: 30px; }
  .product-media { height: calc((100vw - 48px - 34px) / 2); }
  .spotlight-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { margin-top: -42px; }
  .article-card img { height: auto; }
  .article-card:last-child { grid-column: 1 / -1; width: calc(50% - 18px); justify-self: center; }
  .sun101-nav--listing .language-switcher { grid-column: 3; grid-row: 1; }
  .sun101-nav__links { grid-column: 2; gap: 18px; }
  .sun101-nav__home, .sun101-nav--listing .sun101-nav__listing { font-size: 13px; }
  .sun101-listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sun101-listing-card:last-child { grid-column: 1 / -1; width: calc(50% - 16px); justify-self: center; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-shell { padding-inline: 15px; gap: 9px; }
  .primary-menu { right: 15px; width: min(210px, calc(100vw - 30px)); }
  .language-switcher { font-size: 10px; }
  .language-switcher__trigger { min-height: 34px; padding: 6px 8px; border-width: 1px; gap: 5px; }
  .language-switcher__globe { width: 14px; height: 14px; }
  .language-switcher__menu { min-width: 154px; }
  .nav-actions { gap: 5px; }
  .nav-shop-cta { min-height: 32px; padding: 6px 8px; font-size: 10px; }
  .nav-shop-cta .commerce-cta__status { display: none; }
  .hero img { min-height: 265px; object-position: center; }
  .fun-copy h2 { font-size: 45px; }
  .about-heading-row, .products-video > h2 { height: 52px; padding-inline: 14px; }
  .about-heading-row { gap: 10px; }
  .about-heading-row h2, .products-video > h2 { min-width: 0; font-size: clamp(18px, 5.4vw, 20px); line-height: 1.08; text-wrap: balance; }
  .about-deg-logo { width: min(144px, 38vw); }
  .video-sound-toggle { right: 12px; bottom: 12px; width: 40px; height: 40px; }
  .video-sound-toggle svg { width: 21px; height: 21px; }
  .video-playback-toggle { right: 62px; bottom: 12px; width: 40px; height: 40px; }
  .play-icon { width: 68px; height: 48px; border-radius: 12px; }
  .play-icon::after { top: 12px; left: 28px; border-width: 12px 0 12px 19px; }
  .deg-story { width: calc(100% - 40px); margin-block: 40px; }
  .deg-visual { min-height: 0; padding: 44px; }
  .deg-visual img { width: min(280px, 82%); }
  .deg-copy h2 { font-size: 43px; }
  html[lang="vi"] .deg-copy h2 { font-size: clamp(34px, 10vw, 42px); line-height: 1.05; }
  .section-pad { padding: 66px 20px; }
  .section-pad > h2 { margin-bottom: 40px; font-size: 45px; }
  .feature-grid, .product-grid { grid-template-columns: 1fr; }
  .feature-grid { gap: 56px; }
  .feature-card img { width: 230px; height: 230px; }
  .shop-grid, .spotlight-grid, .article-grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 420px);
    justify-content: start;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .shop-grid::-webkit-scrollbar, .spotlight-grid::-webkit-scrollbar, .article-grid::-webkit-scrollbar { display: none; }
  .shop-grid > *, .spotlight-grid > *, .article-grid > * { scroll-snap-align: start; scroll-snap-stop: always; }
  .shop-card { width: 100%; }
  .product-grid { width: min(100%, 430px); margin: auto; gap: 52px; }
  .product-media { height: min(calc(100vw - 40px), 430px); }
  .product-modal { display: block; padding: 12px; overflow-y: auto; }
  .product-modal__dialog { width: 100%; max-height: none; min-height: calc(100vh - 24px); padding: 54px 22px 24px; }
  .product-modal__layout { grid-template-columns: 1fr; gap: 24px; }
  .product-modal__gallery { position: static; }
  .product-modal__media { position: relative; }
  .product-modal__content { padding-right: 0; }
  .product-modal__content h2 { margin-right: 28px; }
  .spotlight-heading { align-items: flex-start; flex-direction: column; }
  .spotlight-heading h2 { font-size: 47px; line-height: 1.3; }
  .sun-hero { height: clamp(440px, 72vw, 560px); }
  .sun-hero > img { min-height: 0; }
  .sun-hero > div { left: 24px; right: 24px; }
  .sun-hero h2 { font-size: 52px; }
  .article-grid { margin-top: -28px; padding-inline: 20px; scroll-padding-inline: 20px; }
  .article-card:last-child { grid-column: auto; width: auto; }
  .article-card h3 { min-height: calc(3 * 1.35em); }
  .faq-question { padding-block: 20px; font-size: 17px; }
  .faq-answer p { padding-right: 4px; }
  .sun101-page { width: min(calc(100% - 40px), 1180px); padding-block: 52px 72px; }
  .sun101-listing-grid { grid-template-columns: 1fr; gap: 48px; }
  .sun101-listing-card, .sun101-listing-card:last-child { width: 100%; max-width: 520px; margin-inline: auto; }
  .sun101-listing-card h2, .sun101-listing-card p { min-height: 0; }
  .sun101-nav__links { gap: 12px; }
  .sun101-breadcrumb li[aria-current="page"] { display: none; }
  .site-footer { padding-inline: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

@media (max-width: 760px) {
  .product-modal__media { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-modal__media::-webkit-scrollbar { display: none; }
  .product-modal__slides { display: flex; }
  .product-modal__slide,
  .product-modal__slide.is-active { display: block; flex: 0 0 100%; scroll-snap-align: start; }
  .product-modal__thumbnails { display: none; }
}

@media (max-width: 380px) {
  .nav-shell { padding-inline: 10px; gap: 5px; }
  .primary-menu { right: 10px; width: min(200px, calc(100vw - 20px)); }
  .brand-logo { width: 84px; }
  .menu-toggle { width: 38px; height: 38px; padding: 7px; }
  .nav-shop-cta { padding-inline: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
