/* font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
/* variable */
:root {
    --color-red: #f74067;
    --color-main: #3d41b5;
    --color-blue: #2cc1f8;
    --color-gray: #dbdbdb;
    --color-brown: #3d310e;
    --color-white: #ffffff;
    --color-purple: #9747ff;
    --color-stroke: #ebecf9;
    --color-yellow: #fabb00;
    --color-maroon: #e3305d;
    /* variable-card */
    --color-card-base: #fdfdfe;
    /* variable-text */
    --color-text-base: #42424f;
    /* variable-pill */
    --color-pill-base: #ffffff2f;
    /* variable-button */
    --color-button-text: #f0f0ff;
    --color-button-stoke: #ffd760;
    --color-button-unselected: #f7f7f7;
    /* variable-lang */
    --color-lang-base: #ffffff1a;
    --color-lang-stroke: #ffe4ec99;
}
/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
/* html-body */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 132px;
}
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-base);
    background-color: var(--color-white);
}
/* class */
.container {
    margin: 0 auto;
    padding: 0 32px;
    max-width: 1364px;
}
.button {
    gap: 8px;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    align-items: center;
    border-radius: 9999px;
    color: var(--color-brown);
    background: var(--color-yellow);
    border: 2px solid var(--color-button-stoke);
}
.button img[alt="whatsapp"] {
    max-width: 20px;
}
.mobile {
    display: none;
}
/* element */
a {
    text-decoration: none;
    color: var(--color-text-base);
}
button {
    border: none;
    cursor: pointer;
    background: none;
    font-size: inherit;
    font-family: inherit;
    color: var(--color-text-base);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    color: var(--color-text-base);
}
hr {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color-stroke);
}
img {
    max-width: 100%;
    user-select: none;
    -webkit-user-drag: none;
}
p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-base);
}
span {
    display: inline-block;
}
ul {
    padding-left: 20px;
    color: var(--color-text-base);
}
/* header */
header {
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    overflow-x: clip;
    position: sticky;
    flex-direction: column;
}
header .top {
    display: flex;
    min-height: 36px;
    position: relative;
    align-items: center;
    background: var(--color-maroon);
}
header .top > img {
    position: absolute;
}
header .top > img:first-of-type {
    top: 0;
    left: 0;
    max-width: 84px;
}
header .top > img:last-of-type {
    right: 0;
    bottom: 0;
    max-width: 98px;
}
header .top .container {
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .top .container > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
}
header .top .container .pill {
    gap: 8px;
    display: flex;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    align-items: center;
    border-radius: 9999px;
    color: var(--color-white);
    background: var(--color-pill-base);
}
header .top .container .pill img {
    max-width: 12px;
}
header .bottom {
    display: flex;
    min-height: 80px;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}
header.active .bottom {
    background: var(--color-white);
    border-color: var(--color-stroke);
}
header .bottom .container {
    gap: 32px;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
header .bottom .container > a {
    min-width: 256px;
}
header .bottom .container > a img {
    max-width: 122px;
}
header .bottom .container nav {
    gap: 70px;
    display: flex;
}
header .bottom .container nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}
header.active .bottom .container nav a {
    color: var(--color-text-base);
}
header .bottom .container .action {
    gap: 16px;
    display: flex;
    min-width: 256px;
    align-items: center;
}
header .bottom .container .action a {
    gap: 8px;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    align-items: center;
    border-radius: 9999px;
    color: var(--color-brown);
    background: var(--color-yellow);
    border: 2px solid var(--color-button-stoke);
}
header .bottom .container .action > button {
    gap: 8px;
    display: flex;
    padding: 14px 20px;
    align-items: center;
    border-radius: 9999px;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: var(--color-lang-base);
    border: 2px solid var(--color-lang-stroke);
}
header.active .bottom .container .action > button {
    border-color: var(--color-gray);
}
header .bottom .container .action > button img:nth-of-type(1),
header .bottom .container .action > button img:nth-of-type(2) {
    display: none;
    max-width: 19px;
}
header .bottom .container .action > button img:nth-of-type(1).active,
header .bottom .container .action > button img:nth-of-type(2).active {
    display: block;
}
header .bottom .container .action > button img:nth-of-type(3) {
    max-width: 11px;
}
header .bottom .container .action .lang-switcher {
    bottom: 0;
    right: 32px;
    display: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    position: absolute;
    border-radius: 16px;
    flex-direction: column;
    color: var(--color-white);
    transform: translateY(100%);
    backdrop-filter: blur(12px);
    background: var(--color-lang-base);
    border: 2px solid var(--color-lang-stroke);
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}
header.active .bottom .container .action .lang-switcher {
    background: var(--color-white);
    border-color: var(--color-gray);
}
header .bottom .container .action .lang-switcher.active {
    display: flex;
}
header .bottom .container .action .lang-switcher .item {
    gap: 8px;
    display: flex;
    padding: 8px 12px;
    align-items: center;
    color: var(--color-white);
}
header.active .bottom .container .action .lang-switcher .item {
    color: var(--color-text-base);
}
header .bottom .container .action .lang-switcher .item img:nth-of-type(1) {
    width: 19px;
    height: 19px;
}
header .bottom .container .action .lang-switcher .item img:nth-of-type(2) {
    display: none;
    max-width: 12px;
}
header .bottom .container .action .lang-switcher .item.active img:nth-of-type(2) {
    display: block;
}
/* main */
main {
    display: flex;
    overflow-x: clip;
    position: relative;
    flex-direction: column;
}
/* section-hero */
#hero {
    margin-top: -82px;
    min-height: 820px;
    position: relative;
    margin-bottom: 90px;
    border-radius: 0 0 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        url(./img/hero-base.webp) no-repeat center / cover,
        radial-gradient(50% 50% at 50% 50%, #ff6189 0%, #ff4070 100%);
}
#hero .container {
    gap: 32px;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
}
#hero .container .hero-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
}
#hero .container h1 {
    font-size: 45px;
    font-weight: 800;
    max-width: 690px;
    color: var(--color-white);
    transition: filter 0.3s ease;
}
#hero .container h1 span {
    color: #fcce45;
    transition: filter 0.3s ease;
}
[lang="ms"] #hero .container h1 {
    max-width: 640px;
}
#hero:has(.container a:nth-of-type(1):hover) .container h1 {
    filter: drop-shadow(0 0 5px #ffffff55) brightness(1.075);
}
#hero .container .tag {
    gap: 14px;
    display: flex;
    margin-bottom: 24px;
}
#hero .container .tag span {
    font-size: 13px;
    min-width: 230px;
    font-weight: 700;
    padding: 13px 14px;
    border-radius: 9999px;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d0395f;
    gap: 10px;
}
#hero .container a:nth-of-type(1) {
    font-size: 16px;
    padding: 16px 22px;
}
#hero .container a:nth-of-type(1) img {
    max-width: 9px;
}
/* section-packaging */
#packaging {
    margin-bottom: 104px;
}
#packaging .container h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    color: var(--color-main);
}
#packaging .container > p {
    max-width: 608px;
    line-height: 1.75;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 52px;
}
#packaging .container .grid {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
#packaging .container .grid .card {
    gap: 22px;
    display: flex;
    padding: 16px 20px;
    align-items: center;
    border-radius: 40px;
    background: var(--color-card-base);
    border: 1px solid var(--color-stroke);
}
#packaging .container .grid .card img {
    width: 150px;
    height: 163px;
    object-fit: contain;
}
#packaging .container .grid .card .content {
    gap: 12px;
    display: flex;
    flex-direction: column;
}
#packaging .container .grid .card .content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-main);
}
#packaging .container .grid .card .content p {
    max-width: 200px;
}
#packaging .container .grid .cta {
    display: flex;
    overflow: clip;
    padding: 32px 40px;
    position: relative;
    border-radius: 40px;
    grid-column: span 2;
    align-items: center;
    background: linear-gradient(90deg, #c08fff -8%, #9747ff 100%);
}
#packaging .container .grid .cta .content {
    z-index: 1;
    display: flex;
    max-width: 420px;
    flex-direction: column;
    align-items: flex-start;
}
#packaging .container .grid .cta .content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}
#packaging .container .grid .cta .content p {
    max-width: 400px;
    margin-bottom: 18px;
    color: var(--color-white);
}
#packaging .container .grid .cta > img {
    position: absolute;
}
#packaging .container .grid .cta > img:nth-of-type(1) {
    bottom: -50px;
    left: 50%;
    max-width: 241px;
    transform: translateX(-50%) rotate(45deg);
}
#packaging .container .grid .cta > img:nth-of-type(2) {
    bottom: 0;
    right: 12px;
    max-width: 311px;
}
#packaging .container .grid .cta > img:nth-of-type(3) {
    top: 12px;
    right: 12px;
    max-width: 56px;
    transform: rotate(15deg);
}
/* section-why */
#why {
    margin-bottom: 100px;
}
#why .container h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    color: var(--color-main);
}
#why .container > p {
    max-width: 980px;
    line-height: 1.75;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 56px;
}
#why .why-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 70px;
}
#why .why-card {
    grid-column: span 2;
    padding: 42px 38px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(250, 187, 0, 0.28) 0%, rgba(255, 255, 255, 0.28) 95.46%);
}
#why .why-card:nth-of-type(4) {
    grid-column: 2 / span 2;
}
#why .why-card:nth-of-type(2) {
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 95.46%);
}
#why .why-card h3 {
    color: #7f620a;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
}
#why .why-card p {
    line-height: 1.75;
}
#why .why-card:nth-of-type(2) h3 {
    color: #42088c;
}
#why .milestone {
    margin-bottom: 52px;
}
#why .milestone .desktop {
    display: block;
}
#why .milestone .mobile {
    display: none;
    margin-inline: auto;
    max-width: 352px;
}
@media (max-width: 900px) {
    #why .milestone .mobile {
        display: block;
    }
    #why .milestone .desktop {
        display: none;
    }
}
#why .container .hastag {
    opacity: 0.2;
    display: flex;
    font-size: 60px;
    font-weight: 800;
    padding-block: 40px;
    justify-content: flex-end;
}
#why .feature {
    background: var(--color-red);
}
#why .feature .container {
    gap: 16px;
    display: flex;
    align-items: center;
}
#why .feature .container > img {
    z-index: 1;
    max-width: 487px;
    margin-top: -140px;
    margin-bottom: -140px;
}
#why .feature .container .grid {
    gap: 42px;
    display: grid;
    padding-block: 56px;
    align-content: start;
    grid-template-columns: repeat(2, 1fr);
}
#why .feature .container .grid .item {
    gap: 32px;
    display: flex;
    align-items: flex-start;
}
#why .feature .container .grid .item img {
    max-width: 31px;
}
#why .feature .container .grid .item .text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-white);
    line-height: 1.75;
}
#why .feature .container .grid .item .text p {
    color: var(--color-white);
    line-height: 1.75;
}
#why .printing {
    padding-block: 180px 80px;
    background: var(--color-maroon);
}
#why .printing .container {
    gap: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#why .printing .container .machine h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-yellow);
}
#why .printing .container .machine p {
    max-width: 400px;
    line-height: 1.75;
    margin-bottom: 8px;
    color: var(--color-white);
}
#why .printing .container .machine img {
    max-width: 584px;
}
#why .printing .container .video video {
    max-width: 100%;
    border-radius: 36px;
    aspect-ratio: 16 / 9;
}
/* section-testimonial */
#testimonial {
    margin-bottom: 100px;
}
#testimonial .customer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}
#testimonial .customer h2 {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    color: #3d41b5;
}
#testimonial .testimonial-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    margin-bottom: 46px;
}
#testimonial .card {
    background: #fdfdfe;
    border: 1px solid #ebecf9;
    border-radius: 30px;
    padding: 34px;
    display: flex;
    gap: 26px;
    align-items: center;
}
#testimonial .card img {
    max-width: 88px;
    height: auto;
}
#testimonial .card .content img {
    width: 100%;
    max-height: 17px;
    margin-bottom: 16px;
}
#testimonial .card h3 {
    font-weight: 700;
    font-size: 18px;
    color: #3d41b5;
    margin-bottom: 10px;
}
#testimonial .card p {
    font-size: 14px;
}
#testimonial .brand {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 117px;
    justify-content: center;
}
#testimonial .brand-text {
    text-align: center;
    max-width: 562px;
    margin-inline: auto;
    margin-bottom: 26px;
    line-height: 1.75;
}
#testimonial .brand .carousel {
    gap: 18px;
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: space-between;
    animation: scroll 60s linear infinite;
}
#testimonial .brand .carousel .item {
    height: 85px;
    display: flex;
    min-width: 220px;
    padding: 14px 24px;
    align-items: center;
    border-radius: 18px;
    justify-content: center;
    border: 1px solid var(--color-stroke);
}
#testimonial .brand .carousel .item img {
    max-width: 172px;
    max-height: 56px;
    object-fit: contain;
}
#testimonial .cta .container h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-main);
}
#testimonial .cta .container p {
    line-height: 1.75;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 32px;
}
#testimonial .cta .container a {
    margin-inline: auto;
    max-width: max-content;
}
/* section-shipping */
#shipping {
    position: relative;
    padding-block: 60px;
    margin-bottom: 100px;
    background: #26c5ff;
}
#shipping .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}
#shipping .container h2 {
    font-size: 140px;
    line-height: 0.9;
    font-weight: 800;
    text-align: center;
    color: var(--color-white);
    text-transform: uppercase;
}
#shipping .container span {
    opacity: 0.2;
    display: block;
    line-height: 0.9;
    font-size: 140px;
    font-weight: 800;
    text-align: center;
    color: var(--color-white);
    text-transform: uppercase;
}
#shipping .container img {
    bottom: 0;
    left: 50%;
    width: 571px;
    height: 470px;
    position: absolute;
    transform: translateX(-50%);
}
#faq {
    margin-bottom: 100px;
}
#faq .container h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    color: var(--color-main);
}
#faq .container > p {
    max-width: 550px;
    line-height: 1.75;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 52px;
}
#faq .container .content {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#faq .container .content .left,
#faq .container .content .right {
    gap: 30px;
    display: flex;
    flex-direction: column;
}
#faq .container .content .item {
    display: flex;
    border-radius: 24px;
    flex-direction: column;
    background: var(--color-card-base);
    border: 1px solid var(--color-stroke);
}
#faq .container .content .item .question {
    gap: 32px;
    width: 100%;
    display: flex;
    padding: 16px 20px;
    align-items: center;
    justify-content: space-between;
}
#faq .container .content .item .question:hover {
    cursor: pointer;
}
#faq .container .content .item .question h3 {
    font-size: 18px;
    max-width: 480px;
    font-weight: 600;
    line-height: 1.75;
    user-select: none;
    color: var(--color-main);
}
#faq .container .content .item .question .toggle {
    width: 34px;
    height: 34px;
    display: flex;
    min-width: 34px;
    align-items: center;
    border-radius: 9999px;
    justify-content: center;
    background: #f7406711;
}
#faq .container .content .item .question .toggle img {
    max-width: 11px;
    transition: transform 0.3s ease;
}
#faq .container .content .item.active .question .toggle img {
    transform: rotate(45deg);
}
#faq .container .content .item .answer {
    gap: 8px;
    opacity: 0;
    display: flex;
    max-height: 0;
    max-width: 90%;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.75;
    padding-inline: 22px;
    flex-direction: column;
    transition:
        opacity 0.3s ease,
        max-height 0.3s ease,
        margin-top 0.3s ease,
        margin-bottom 0.3s ease;
}
#faq .container .content .item.active .answer {
    opacity: 1;
    margin-bottom: 16px;
    max-height: 500px;
}
#faq .container .content .mobile .card img {
    max-width: 12px;
}
/* section-cta */
#cta {
    margin-bottom: 80px;
}
#cta .container .card {
    min-height: 350px;
    position: relative;
    border-radius: 50px;
    background:
        url(./img/cta-base.webp) no-repeat center / cover,
        radial-gradient(76% 1051.95% at 19% 50%, #ff6189 0%, #ff4070 50%);
}
#cta .container .card > img {
    position: absolute;
}
#cta .container .card > img:nth-of-type(1) {
    top: 20px;
    left: 40%;
    max-width: 85px;
    transform: rotate(-18deg);
}
#cta .container .card > img:nth-of-type(2) {
    right: 10px;
    bottom: -60px;
    transform: rotate(90deg);
}
#cta .container .card .content {
    gap: 32px;
    display: flex;
    max-width: 1100px;
    align-items: center;
    margin-inline: auto;
    padding-inline: 32px;
    justify-content: space-between;
}
#cta .container .card .content > img {
    z-index: 1;
    max-width: 490px;
    margin-top: -44px;
}
#cta .container .card .content .copy {
    padding-block: 40px;
}
#cta .container .card .content .copy h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-white);
}
#cta .container .card .content .copy p {
    max-width: 430px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--color-white);
}
#cta .container .card .content .copy a {
    max-width: max-content;
}
/* footer */
footer {
    margin-bottom: 32px;
}
footer .container {
    gap: 32px;
    display: flex;
    justify-content: space-between;
}
footer .container .left {
    gap: 32px;
    display: flex;
    flex-direction: column;
}
footer .container .left > a img {
    max-width: 122px;
}
footer .container .left .card {
    display: flex;
    padding: 40px 36px;
    border-radius: 20px;
    flex-direction: column;
    background: var(--color-card-base);
    border: 1px solid var(--color-stroke);
}
footer .container .left .card h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-main);
}
footer .container .left .card a {
    gap: 10px;
    display: flex;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
}
footer .container .left .card .social-title {
    margin-top: 16px;
}
footer .container .left .card .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
footer .container .left .card a img {
    max-width: 28px;
}
footer .container .right {
    max-width: 900px;
}
footer .container .right .top {
    gap: 32px;
    display: grid;
    grid-template-columns: 4fr 3fr 5fr;
    margin-bottom: 32px;
}
footer .container .right .top .packaging h2,
footer .container .right .top .about h2,
footer .container .right .top .address h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 26px;
    color: var(--color-main);
}
footer .container .right .top .packaging nav,
footer .container .right .top .about nav {
    gap: 20px;
    display: flex;
    flex-direction: column;
}
footer .container .right .top .packaging nav a,
footer .container .right .top .about nav a,
footer .container .right .top .address p {
    font-size: 14px;
}
footer .container .right .top .address h3 {
    font-weight: 500;
    margin-bottom: 14px;
    text-transform: uppercase;
}
footer .container .right .top .address p {
    position: relative;
    padding-left: 14px;
}
footer .container .right .top .address p::before {
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    content: "";
    position: absolute;
    border-radius: 10px;
    background-color: var(--color-main);
}
footer .container .right .bottom > span {
    font-size: 14px;
    margin-top: 32px;
    display: inline-block;
}
/* element-floating */
.floating {
    gap: 18px;
    z-index: 10;
    right: 32px;
    bottom: 32px;
    display: flex;
    position: fixed;
    align-items: flex-end;
    flex-direction: column;
}
.floating .scroll-top {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.floating .scroll-top button {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    justify-content: center;
    background: linear-gradient(180deg, #fe9cb1 0%, #f74067 100%);
}
.floating .scroll-top button img {
    max-width: 16px;
}
.floating .whatsapp a {
    gap: 10px;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 18px;
    align-items: center;
    border-radius: 9999px;
    max-width: max-content;
    justify-content: center;
    color: var(--color-white);
    background: linear-gradient(200deg, #60f87c 10%, #41bd50 75%);
}
.floating .whatsapp a img {
    max-width: 22px;
}
/* element-mobile-menu */
.mobile.menu {
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    height: 100dvh;
    position: fixed;
    flex-direction: column;
    padding: 54px 20px 20px;
    transform: translateX(100%);
    background: var(--color-white);
    transition: transform 0.3s ease;
}
.mobile.menu.active {
    transform: translateX(0);
}
.mobile.menu .header {
    gap: 32px;
    display: flex;
    margin-bottom: 48px;
    justify-content: space-between;
}
.mobile.menu .header a img {
    width: 92px;
}
.mobile.menu .header button img {
    max-width: 22px;
}
.mobile.menu .content {
    gap: 32px;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile.menu .content > a {
    justify-content: center;
}
.mobile.menu .content nav {
    gap: 24px;
    display: flex;
    flex-direction: column;
}
.mobile.menu .content nav a {
    font-size: 20px;
    font-weight: 600;
    padding-block: 12px;
    color: var(--color-dark);
}
/* lang-malay */
html[lang="ms"] #shipping {
    min-height: 600px;
}
html[lang="ms"] #shipping .container h2 {
    font-size: 6vw;
}
html[lang="ms"] #shipping .container span {
    font-size: 6vw;
}
/* media-screen-1200px */
@media (min-width: 1201px) {
    .animation-shine {
        filter: none;
        transition:
            filter 0.3s ease,
            transform 0.3s ease;
    }
    .animation-shine:hover {
        transform: scale(1.025);
        filter: brightness(1.075);
    }
}
/* media-screen-1200px */
@media (max-width: 1200px) {
    header .bottom .container nav {
        display: none;
    }
    header .bottom .container .action a {
        display: none;
    }
    header .bottom .container .action {
        justify-content: flex-end;
    }
    header .bottom .container .action .mobile {
        display: block;
    }
    header .bottom .container .action .mobile button img {
        max-width: 22px;
    }
    #hero .container h1 {
        font-size: 36px;
    }
    #hero > img:nth-of-type(1) {
        right: 34px;
    }
    #hero .container .tag {
        flex-wrap: wrap;
    }
    #packaging .container .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #packaging .container .grid .card:nth-of-type(7) {
        grid-column: span 2;
    }
    #packaging .container .grid .card:nth-of-type(7) .content p {
        max-width: 100%;
    }
    #packaging .container .grid .cta {
        min-height: 260px;
    }
    #packaging .container .grid .cta > img:nth-of-type(2) {
        right: 48px;
    }
    #why .why-grid {
        gap: 16px;
    }
    #why .feature {
        margin-top: 64px;
    }
    #why .feature .container {
        flex-direction: column;
        align-items: center;
    }
    #why .feature .container > img {
        max-width: 320px;
        max-height: 480px;
        margin-bottom: -48px;
    }
    #why .container .hastag span {
        display: none;
    }
    #why .printing {
        padding-block: 80px;
    }
    #why .printing .container {
        flex-direction: column;
    }
    #why .printing .container .machine {
        display: flex;
        margin-bottom: 32px;
        flex-direction: column;
    }
    #why .printing .container .machine p {
        max-width: 100%;
    }
    #why .printing .container .machine img {
        height: auto;
        max-width: 100%;
        align-self: center;
    }
    #testimonial .testimonial-content {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }
    #testimonial .card:nth-of-type(3) {
        grid-column: 2 span;
    }
    #shipping {
        min-height: 640px;
    }
    #shipping .container h2 {
        font-size: 10vw;
        line-height: 1.025;
    }
    #shipping .container span {
        font-size: 10vw;
        line-height: 1.025;
    }
    #cta .container .card .content .copy {
        z-index: 1;
    }
    footer .container .right .top {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .container .right .top .address {
        grid-column: span 2;
    }
    .mobile.menu {
        max-width: 480px;
        border-left: 1px solid var(--color-stroke);
    }
}
/* media-screen-900px */
@media (max-width: 900px) {
    .container {
        padding-inline: 20px;
    }
    .mobile {
        display: block;
    }
    header .top {
        background: var(--color-red);
        padding-block: 8px;
    }
    header .top > img {
        display: none;
    }
    header .top .container {
        z-index: 1;
    }
    header .top .container > span {
        display: none;
    }
    header .top .container .pill {
        font-size: 12px;
    }
    header .bottom .container > a {
        min-width: unset;
    }
    header .bottom .container > a img {
        height: auto;
        max-width: 92px;
    }
    header .bottom .container .action {
        min-width: unset;
    }
    header .bottom .container .action > button {
        padding: 8px 16px;
    }
    header .bottom .container .action .lang-switcher {
        right: 20px;
        padding: 4px;
        font-size: 13px;
        backdrop-filter: blur(12px);
    }
    header .bottom .container .action .lang-switcher .item {
        padding-block: 6px;
    }
    #hero {
        padding-top: 104px;
        padding-bottom: 52px;
        background:
            url(./img/hero-mobile-base.webp) no-repeat center / cover,
            radial-gradient(50% 50% at 50% 50%, #ff6189 0%, #ff4070 100%);
    }
    #hero > img:nth-of-type(1) {
        top: 92px;
        right: 10px;
        height: auto;
        max-width: 48px;
    }
    #hero > img:nth-of-type(2) {
        top: 240px;
        height: auto;
    }
    #hero > img:nth-of-type(3) {
        height: auto;
        max-width: 400px;
    }
    #hero .container {
        margin-top: 8px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    #hero .container .hero-content {
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    #hero .container h1 {
        font-size: 26px;
        line-height: 1.75;
    }
    #hero .container .tag {
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 16px;
        justify-content: center;
    }
    #hero .container .tag span {
        backdrop-filter: unset;
        font-size: 9px;
        padding: 8px 10px;
        min-width: 150px;
    }
    #hero .container .mobile img {
        max-width: 22px;
    }
    #hero .container a:nth-of-type(1) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 300px;
    }
    #packaging .container h2 {
        line-height: 1.5;
        text-align: start;
    }
    #packaging .container > p {
        text-align: start;
    }
    #packaging .container .grid {
        gap: 10px;
    }
    #packaging .container .grid .card {
        border-radius: 20px;
        flex-direction: column;
    }
    #packaging .container .grid .card img {
        max-width: 130px;
    }
    #packaging .container .grid .card .content h3 {
        font-size: 16px;
        text-align: center;
    }
    #packaging .container .grid .card .content p {
        display: none;
    }
    #packaging .container .grid .card:nth-of-type(7) {
        grid-column: span 1;
    }
    #packaging .container .grid .cta {
        overflow: clip;
        margin-top: 48px;
        min-height: 500px;
        padding-top: 52px;
        text-align: center;
        padding-inline: 16px;
        align-items: flex-start;
    }
    #packaging .container .grid .cta > img:nth-of-type(1) {
        left: 20px;
        bottom: 120px;
    }
    #packaging .container .grid .cta > img:nth-of-type(2) {
        right: 50%;
        transform: translateX(50%);
    }
    #packaging .container .grid .cta > img:nth-of-type(3) {
        top: 50%;
        right: -12px;
        transform: translateY(-50%) rotate(15deg);
    }
    #packaging .container .grid .cta .content {
        max-width: 290px;
        align-items: center;
        margin-inline: auto;
    }
    #why {
        margin-bottom: 40px;
    }
    #why .why-grid {
        gap: 4px;
        grid-template-columns: 1fr;
    }
    #why .why-card {
        grid-column: auto;
    }
    #why .why-card:nth-of-type(4) {
        grid-column: auto;
    }
    #why .why-card:nth-of-type(2) {
        order: -1;
    }
    #why .why-card h3 {
        font-size: 18px;
    }
    #why .why-card p {
        font-size: 16px;
    }
    #why .container h2 {
        line-height: 1.5;
        text-align: start;
    }
    #why .container > p {
        text-align: start;
    }
    #why .feature .container > img {
        height: auto;
        max-width: 200px;
        margin-top: -120px;
    }
    #why .feature .container .grid {
        grid-template-columns: 1fr;
    }
    #why .feature .container .grid .item {
        gap: 20px;
    }
    #why .feature .container .grid .item img {
        width: 24px;
        height: 24px;
        margin-top: 4px;
    }
    #why .feature .container .grid .item .text h3 {
        font-size: 16px;
    }
    #why .feature .container .grid .item .text p {
        font-size: 14px;
    }
    #testimonial .testimonial-content {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }
    #testimonial .card:nth-of-type(3) {
        grid-column: auto;
    }
    #testimonial .customer h2 {
        text-align: left;
    }
    #testimonial .card {
        padding: 24px;
    }
    #testimonial .card img {
        max-width: 80px;
    }
    #testimonial .cta .container h3 {
        text-align: left;
    }
    #testimonial .cta .container p {
        text-align: left;
    }
    #testimonial .cta .container a {
        max-width: unset;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #shipping {
        min-height: 440px;
    }
    #shipping .container img {
        height: auto;
        max-width: 360px;
    }
    #faq .container h2 {
        text-align: start;
    }
    #faq .container > p {
        text-align: start;
        margin-bottom: 24px;
        margin-inline: unset;
    }
    #faq .container .content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    #faq .container .content .mobile .card {
        gap: 8px;
        display: flex;
        font-size: 14px;
        font-weight: 600;
        padding: 16px 20px;
        align-items: center;
        border-radius: 16px;
        justify-content: center;
        color: var(--color-main);
        background: var(--color-card-base);
        border: 1px solid var(--color-stroke);
    }
    #faq .container .content .left,
    #faq .container .content .left,
    #faq .container .content .left,
    #faq .container .content .right {
        gap: 12px;
    }
    #faq .container .content .item {
        display: none;
    }
    #faq .container .content .left .item:nth-child(-n + 3) {
        display: flex;
    }
    #faq .container .content .item .question h3 {
        font-size: 14px;
    }
    #faq .container .content .item .answer p,
    #faq .container .content .item .answer ul {
        font-size: 14px;
    }
    #cta .container .card {
        overflow: clip;
        min-height: 600px;
        text-align: center;
        background:
            url(./img/cta-mobile-base.webp) no-repeat center / cover,
            radial-gradient(76% 1051.95% at 19% 50%, #ff6189 0%, #ff4070 50%);
    }
    #cta .container .card > img:nth-of-type(1) {
        left: -18px;
        top: auto;
        z-index: 2;
        bottom: 70px;
    }
    #cta .container .card > img:nth-of-type(2) {
        right: -56px;
        bottom: 120px;
    }
    #cta .container .card .content > img {
        position: absolute;
        bottom: 0;
        max-width: 300px;
    }
    #cta .container .card .content .copy {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    footer .container {
        flex-direction: column;
    }
    footer .container .left > a img {
        max-width: 92px;
    }
    footer .container .left .card {
        display: none;
    }
    footer .container .right .top {
        grid-template-columns: 1fr;
    }
    footer .container .right .top .address {
        grid-column: span 1;
    }
    footer .container .right .mobile.card {
        display: flex;
        padding: 32px;
        border-radius: 20px;
        margin-bottom: 32px;
        flex-direction: column;
        background: var(--color-card-base);
        border: 1px solid var(--color-stroke);
    }
    footer .container .right .mobile.card .social-link {
        display: flex;
        gap: 12px;
    }
    footer .container .right .mobile.card h2 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--color-main);
    }
    footer .container .right .mobile.card h2.social-title {
        margin-top: 16px;
    }
    footer .container .right .mobile.card a {
        gap: 10px;
        display: flex;
        padding: 8px 0;
        font-size: 14px;
        font-weight: 500;
        align-items: center;
    }
    footer .container .right .mobile.card a img {
        max-width: 28px;
    }
    .floating {
        right: 20px;
        bottom: 20px;
        align-items: center;
    }
    .floating .whatsapp a {
        min-width: 68px;
        height: 68px;
    }
    .floating .whatsapp a img {
        max-width: 30px;
    }
    .floating .whatsapp a span {
        display: none;
    }
    html[lang="ms"] #shipping {
        min-height: 390px;
    }
}
/* keyframe-animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
