/*
Theme Name:     Paperoom Child
Theme URI:      https://drumbandjuara.com/
Description:    Child theme for Paperoom theme
Author:         Mayantara.id
Author URI:     https://mayantara.id/
Template:       paperoom
Version:        1.0.0
*/

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

a {
    color: inherit;
}

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

.ast-above-header.ast-above-header-bar {
    /*position: relative;*/
    /*z-index: 99;*/
}

/* === HOME ILLUSTRATION === */
.home-hero-illustration {
    position: relative;
}

.home-hero-illustration:before {
    content: '' !important;
    display: block;
    width: 280px !important;
    height: 1000px !important;
    background: url(https://demo.mayantara.id/paperoom/wp-content/uploads/2025/09/hero-illustration-3-lg.webp) no-repeat;
    background-size: contain;
    position: absolute;
    left: auto !important;
    right: 5% !important;
    top: 0 !important;
    z-index: -1;
}

.home-hero-illustration:after {
    content: '';
    display: block;
    width: 500px;
    height: 600px;
    background: url(https://paperoom.co.id/wp-content/uploads/2025/10/hero-bio-3.webp) no-repeat;
    background-position: bottom right;
    background-size: contain;
    position: absolute;
    right: 0%;
    bottom: 0;
    z-index: -1;
}

/* === FRONT CAROUSEL === */
.carousel-products-front figure.swiper-slide-inner {
    background: #3535350D;
    padding: 3rem 0 2rem;
}

.carousel-products-front figcaption.elementor-image-carousel-caption {
    margin-top: 1em;
}

.carousel-products-front figure.swiper-slide-inner h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

.carousel-products-front figure.swiper-slide-inner p {
    font-family: "DM Sans", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

/* === RIBBON CROSSING ANIMATION === */
.cross-marquee {
  position: relative;
  overflow: hidden;
  height: 240px; /* lebih tinggi supaya ribbon tidak terpotong */
}

/* Pita hitam & merah */
.marquee-strip {
  position: absolute;
  left: -60%;          /* offset lebih besar */
  width: 220%;         /* lebar lebih lebar */
  height: 80px;        /* tinggi pita */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Posisi di tengah, lalu geser naik/turun dikit */
.left-to-right {
  top: 35%;
  transform: translateY(-50%) rotate(2.41deg);
  background: #353535;
}

.right-to-left {
  top: 50%;
  transform: translateY(-50%) rotate(-6.36deg);
  background: #EC3E23;
}

.ribbon-narrower .marquee-strip {
    height: 71px;
}

.ribbon-narrower .marquee-content span {
    font-size: 48px;
}

.ribbon-narrower .left-to-right {
  transform: translateY(-55%) rotate(0deg);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.left-to-right .marquee-content {
  animation-name: scroll-right;
}

.right-to-left .marquee-content {
  animation-name: scroll-left;
}

.marquee-content span {
  display: inline-block;
  padding: 0 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

/* --- Crossing Ribbon style 2: Blog --- */
.ribbon-narrower .style2 .left-to-right {
    transform: translateY(-55%) rotate(4.36deg);
    top: 42%;
}

.style2 .right-to-left {
    transform: translateY(-50%) rotate(-2.41deg);
	top: 57%;
}

.ribbon-narrower.style-2 .marquee-strip {
    height: 56px;
}

.ribbon-narrower.style-2 .marquee-content span {
    font-size: 38px;
}

.ribbon-narrower.style-2 .left-to-right {
    transform: translateY(-49%) rotate(1.39deg);
}

.ribbon-narrower.style-2 .right-to-left {
    transform: translateY(-50%) rotate(-1.62deg);
}

.ribbon-narrower.style-2 .marquee-content span:after {
    content: '//';
    margin-left: 4rem;
}

/* keyframes infinite loop */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* === SCROLL-LINKED HERO ANIMATION === */
/* wrapper dibuat sticky sehingga image 'menempel' saat animasi */
/* .hero-scroll-linked-image-wrapper {
  position: sticky;
  z-index: 20;
  pointer-events: none;
} */

/* .hero-scroll-linked-image-wrapper img {
  transform-origin: 50% 50%;
} */

.hero-scroll-linked-image-wrapper {
  position: sticky;
  top: 0;
  z-index: 20;
  pointer-events: none;
  view-timeline-name: --hero;
  view-timeline-axis: block;
}

.hero-scroll-linked-image-wrapper img {
  transform-origin: 50% 50%;
  animation-name: hero-shrink-move;
  animation-timeline: --hero;
  animation-range: entry 0% exit 60%;
  animation-fill-mode: both;
  animation-timing-function: linear;
}

/* ==== Scroll-driven animation (modern browsers) ==== */
@supports (animation-timeline: scroll()) {

  .hero-scroll-linked-image-wrapper img {
    animation-name: hero-shrink-move;
    animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
    animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
    animation-duration: 1s;               /* wajib di-set (value formal) */
    animation-fill-mode: both;
    animation-timing-function: linear;
  }

  @keyframes hero-shrink-move {
	  0% {
		  transform: translateX(0) translateY(0) scale(1);
	  }
	  60% {
		  transform: translateX(22vw) translateY(100px) scale(0.8);
	  }
	  100% {
		  transform: translateX(22vw) translateY(220px) scale(0.6);
	  }
	}

}

/* === WORD REVEAL ANIMATION === */
.home-hero-word-reveal {
    
}

/*.home-hero-word-reveal {*/
/*  font-size: 1.5rem;*/
/*  line-height: 2.5rem;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 0.5rem;*/
/*}*/

.home-hero-word-reveal .words-wrapper {
  color: #aaa; /* muted */
  transition: color 0.3s ease;
}

.home-hero-word-reveal .words-wrapper img.img-reveal {
  height: 1.5em;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-hero-word-reveal .words-wrapper.active {
  color: #000;
}

.home-hero-word-reveal .words-wrapper.active img.img-reveal {
  opacity: 1;
  transform: scale(1.05);
}

/* === ABOUT STACKED SCROLL === */
/*body.page-id-239 {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  height: 100%;*/
/*  overflow-x: hidden;*/
/*}*/

.stack-wrapper {
    position: relative;
    height: 400vh;
}

.section-card-stack {
  position: sticky !important;
  top: 0;
  height: 100vh;
  transition: transform 0.6s ease-out !important;
}

/* contoh warna biar jelas */
.section-card-stack:first-child { z-index: 4; }
.section-card-stack:nth-child(2) { z-index: 3; }
.section-card-stack:nth-child(3) { z-index: 2; }
.section-card-stack:nth-child(4) { z-index: 1; }

/* === CONTACT === */
.contact-icon .elementor-icon-box-icon {
    background: #EC3E23;
    padding: 16px;
    transition: .3s all;
}

.contact-icon:hover .elementor-icon-box-icon, .contact-icon:hover span.btn-more {
    background: #353535;
}

span.btn-more {
    background: #EC3E23;
    color: #fff;
    display: block;
    width: 163px;
    font-size: 14px;
    text-align: center;
    border-radius: 15px;
    padding: 4px 0;
    margin-top: 5px;
	transition: .3s all;
}

.contact-desc a {
    text-decoration: underline !important;
    transition: .3s all;
}
.contact-desc a:hover {
    text-decoration: none !important;
}
input.wpcf7-form-control, textarea.wpcf7-form-control {
    font-size: 20px;
    border-bottom: 1px #959595 solid;
    border-radius: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
input.wpcf7-form-control.wpcf7-submit {
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    border: 0;
    transition: .3s all;
}

/* === BIO === */
.bio-section {
  position: relative;
  height: 200vh;
}

.bio-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bio-btn {
  font-size: 1.5rem;
  margin: 1rem 0;
  transition: transform 0.3s ease-out;
}

.bio-section::before {
  content: "";
  display: block;
  height: 100%;
  transform: translateY(calc(var(--scroll, 0) * -0.2));
}

/* === LANDING PAGE === */
.landing-product h3.elementor-image-box-title {
    text-align: left;
    padding: 0 1rem;
    margin-bottom: 5px;
}

.landing-product-info {
    display: flex;
    align-items: flex-end;
    padding: 0 1rem;
    justify-content: space-between;
}

.landing-product-btn {
    text-align: right;
}

.landing-product-btn a {
    display: block;
    background: #EC3E23;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 4px 36px;
    text-align: center;
}

.landing-product-btn a:hover {
    background: #353535;
}

.landing-product-price {
    color: #909090;
}

.product-preview-item {
    position: relative;
    height: 689px;
}

.product-preview-item iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    margin: 0 !important;
    position: absolute;
}

.product-preview:after {
    content: '';
    display: block;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    z-index: 0;
}

.product-preview > .e-con-inner {
    position: relative;
    z-index: 1;
}

.preview-cta a {
    width: 100%;
}

.swiper-slide {
    transition: .3s all;
}

.swiper-slide-prev, .swiper-slide-next {
    opacity: .4;
    transform: scale(.6) !important;
}

/* === FOOTER === */
.site-footer-primary-section-1 figure {
    margin-bottom: 3rem;
}

footer.site-footer h3.wp-block-heading, footer.site-footer h2.widget-title {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.site-footer-primary-section-2, .site-footer-primary-section-3, .site-footer-primary-section-4 {
    padding-top: 84px;
}

.site-footer-primary-section-1 .widget_text {
    padding-right: 30%;
}

footer.site-footer a {
    transition: .3s all;
}

.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item > a {
    line-height: 1;
    padding-top: 7px;
    padding-bottom: 8px;
}

footer.site-footer a:hover, .ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item > a:hover, .current-menu-item a {
    background: #EC3E23;
    color: #fff;
    padding: 2px 10px 3px;
}

.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item > a:hover {
	padding-left: 1em;
	padding-right: 1em;
}

/* === PRODUCTS === */
.product-template-default .site-content .ast-container {
    display: block;
}

.single-product .site-content {
    /*padding-top: 6rem;*/
    /*padding-bottom: 5rem;*/
}

.product-detail-top {
    padding: 0 3rem;
}

.product_meta {
    border: 0;
    padding-top: .5em;
    font-size: .9em;
    margin: 0 0 .8em;
}

.product_meta span, .product_meta span a {
    display: inline-block;
    margin-right: 15px;
    align-items: center;
    font-weight: 500;
    text-decoration: inherit;
    color: #0c0d0d;
}

a.button.single_add_to_cart_button {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 17px 2rem;
    width: 90%;
    text-align: center;
    display: inline-block;
    transition: .3s all;
}

a.button.single_add_to_cart_button:hover {
    background: #353535;
    text-decoration: none;
    transform: scale(.95);
}

.carousel-inner {
    height: 585px;
    overflow: hidden;
}

.carousel-thumbnails {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
	margin-top: 2rem;
}

.carousel-thumbnails img.thumb-img {
  border: 1px solid transparent;
  transition: border 0.3s;
  flex-basis: 20%;
  max-height: 117px;
}

.carousel-thumbnails img.thumb-img.active,
.carousel-thumbnails img.thumb-img:hover {
  border: 1px solid #ec3e23;
}

.archive-product {
    width: 100%;
    margin-bottom: 3rem;
}

ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* jarak antar item */
}

ul.products li.product {
    display: block;
    flex: 0 0 calc(33.3333% - 15px);
    box-sizing: border-box;
    margin-bottom: 2.5em;
    border: 0;
    background: #3535350D !important;
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
}

.product.woocommerce {
    margin-bottom: .8em;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-summary-wrap {
    text-align: center;
}

ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-align: center;
}

ul.products li.product a img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    margin: 0;
    transition: .3s all;
}

ul.products li.product:hover a img {
    opacity: .9;
    transform: scale(1.05);
}

.shop-thumbnail-wrap {
    margin-bottom: .8em;
}

.woo-product-category a {
    /*font-family: 'Roboto', sans-serif;*/
    font-size: .85em;
    margin-bottom: .5em;
    display: block;
    line-height: 1.3;
    color: #1E1E1E;
    /* opacity: .6; */
    transition: .3s all;
}

.woo-product-category a:hover, a.loop-product__link:hover {
    text-decoration: none;
}

h2.woocommerce-loop-product__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3em;
    color: #353535;
    margin-bottom: .5em;
    padding: 0;
}

h5.product-code {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3em;
    color: #353535;
}

.post-type-archive-product #primary, .archive #primary {
    margin-top: 5rem;
}

header.woocommerce-products-header {
    margin-bottom: 2rem;
    padding-top: 3rem;
}

h1.woocommerce-products-header__title.page-title {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.taxonomy-description {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.woocommerce-breadcrumb {
    font-size: 16px;
    font-weight: 400;
    color: #0A152E;
    /* margin-bottom: 0; */
}

.woocommerce-breadcrumb a {
    /* color: #0C0D0D; */
}

p.woocommerce-result-count, .woocommerce-ordering select, .woocommerce-ordering select {
    font-size: 16px;
    color: #0C0D0D;
    margin-bottom: 0;
}

.woocommerce-ordering select, .woocommerce-ordering select {
    font-size: 16px;
    background-color: #C6CED7;
    padding: 7px 15px;
    border-radius: 20px;
    background-position-x: 93%;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 0;
    margin-top: 4px;
}

.wrap-product-detail {
    padding-top: 3rem;
}

h1.product_title.entry-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

h3.product-price {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0;
    color: inherit;
}

.single-product h5.product-code {
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.woocommerce-tabs ul.tabs {
    display: none;
}

.woocommerce-tabs {
    padding-right: 10%;
    margin-top: 1.5rem;
    font-size: 18px;
}

.product_info {
    font-size: 18px;
}

.product_info .info-item {
    margin-bottom: 1.3rem;
}

.product_info h6.info-title {
    font-size: inherit;
    font-weight: 700;
    margin-bottom: 5px;
}

.single-product ul.products li.product {
    margin-bottom: 0 !important;
}

section.related.products {
    margin-top: 5rem;
    margin-bottom: 5rem;
    /*margin-bottom: -17rem;*/
    /*z-index: -1;*/
    /*position: relative;*/
}

section.related.products h2.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.3em;
    text-align: center;
}

div.summary {
    margin-bottom: 0rem;
}

.woocommerce-product-gallery__image {
    
}

.flex-control-nav.flex-control-thumbs li {
    border-radius: 20px;
    overflow: hidden;
}

/* === PAGINATION === */
nav.navigation.pagination {
    justify-content: center;
    margin: 2rem 0 1rem;
}

.page-numbers {
    border: 1px #D9D9D9 solid;
    border-radius: 5px;
    min-width: 34px;
    display: inline-block;
    text-align: center;
    padding: 2px 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #A0A0A0;
}

a.page-numbers {
    background: #EC3E23;
    color: #fff;
    transition: .3s all;
}

a.page-numbers:hover {
    background: #353535;
}

a.prev.page-numbers, a.next.page-numbers {
    width: 70px;
}

/* === AST PAGINATION === */
.ast-pagination .page-numbers {
    border: 1px #EC3E23 solid;
    border-radius: 5px;
    min-width: 34px;
    width: auto;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 2px 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    background: #EC3E23;
    color: #fff;
    transition: .3s all;
}

.ast-pagination .page-numbers.current {
    background: transparent;
    color: #A0A0A0;
    border-color: #D9D9D9;
}

.ast-pagination .prev.page-numbers, .ast-pagination .next.page-numbers {
    line-height: 1.5;
    width: auto;
    height: auto;
    padding: 2px 10px;
}

.ast-pagination a.page-numbers:hover {
    color: #fff;
    border-color: #353535;
}

/* === ARCHIVE === */
.ast-separate-container .ast-article-inner {
    background-color: #F0F0F0;
    box-shadow: none;
}

.ast-blog-single-element.ast-taxonomy-container a {
    color: #ec3e23;
}

.entry-title a {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #353535;
}

.entry-meta, .entry-meta * {
    font-size: 16px;
    font-weight: 400;
    color: #909090;
}

/* === FLOATING BUTTON === */
.footer-whatsapp {
    padding: 12px 14px;
    background: #25d366;
    border-radius: 100%;
    font-size: 30px;
    line-height: 1;
    position: fixed;
    bottom: 4.5rem;
    right: 20px;
    z-index: 99;
    transition: .3s all;
}

.footer-whatsapp:hover {
    background: #1E1E1E;
}

.footer-whatsapp .whatsapp-icon {
    color: #fff;
	transition: .3s all;
}

.footer-whatsapp:hover .whatsapp-icon {
    /*color: #fff;*/
}

.mobile-text {
    display: none;
}

.ast-theme-transparent-header [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    fill: #b31b36;
}

@media screen and (max-width: 1300px) {
    .home-hero-scroll-linked {
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media screen and (max-width: 1200px) {
    
}

@media screen and (max-width: 1024px) {
    .marquee-content span {
        font-size: 42px;
    }
    
    .product-preview-item {
        height: 598px;
    }
    
    .landing-product-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .landing-product-btn {
        margin-top: 1rem;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
      
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(7vw) translateY(15vh) scale(0.8);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(22vw) translateY(48vh) scale(0.6);
        }
      }
    }
    
    .site-primary-footer-wrap {
        padding-left: 1em;
        padding-right: 1em;
    }
}

@media screen and (max-width: 991px) {
    .carousel-inner {
        height: auto;
    }
    .product-detail-top {
        padding: 0;
    }
    
    .product-preview-item {
        height: 577px;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
      
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(7vw) translateY(15vh) scale(0.8);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(22vw) translateY(52vh) scale(0.6);
        }
      }
    }
}

@media screen and (max-width: 921px) {
    .product-preview-item {
        height: 559px;
    }
    
    .site-footer-primary-section-1 .widget_text {
        padding-right: 0;
    }
}

@media screen and (max-width: 820px) {
    .product-preview-item {
        height: 518px;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
      
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(10vw) translateY(15vh) scale(0.8);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(22vw) translateY(57vh) scale(0.6);
        }
      }
    }
}

@media screen and (max-width: 768px) {
    .single-product .product-detail-top, .single-product .product_meta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .wrap-product-detail {
        padding: 3rem 0 0;
    }
    a.button.single_add_to_cart_button {
        width: 100%;
    }
    .taxonomy-description {
        width: 80%;
    }
    ul.products li.product {
        flex: 0 0 calc(50% - 15px);
    }
    .post-type-archive-product .site-content:after, .tax-product-category .site-content:after {
        top: 350px;
        height: 350px;
    }
    .cross-marquee {
        height: 150px;
    }
    
    .marquee-strip {
        height: 65px;
    }
    
    .marquee-content span {
        font-size: 32px;
    }
    
    .landing-product img {
        width: 100%;
    }
    
    .product-preview-item {
        height: unset;
    }
    
    .product-preview-item iframe {
        position: relative;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.8);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(65vh) scale(0.7);
        }
      }
    }
	
	.bio-section::before {
		width: 200px !important;
		height: 800px !important;
	}
	
	.home-hero-illustration:after {
		width: 40%;
		height: 400px;
	}
}

@media screen and (max-width: 680px) {
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.8);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(68vh) scale(0.7);
        }
      }
    }
}

@media screen and (max-width: 560px) {
    .post-type-archive-product .site-content:after, .tax-product-category .site-content:after {
        top: 350px;
        height: 280px;
    }
    h3.product-price {
        font-size: 28px;
    }
    .woocommerce-tabs {
        padding-right: 0;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.9);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(55vh) scale(0.8);
        }
      }
    }
    
}

@media screen and (max-width: 544px) {
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.9);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(63vh) scale(0.8);
        }
      }
    }
    
    .site-footer-primary-section-2, .site-footer-primary-section-3, .site-footer-primary-section-4 {
        padding-top: 2rem;
    }
	
	.bio-btn .elementor-icon-box-wrapper {
		flex-direction: column !important;
	}

	.bio-btn .elementor-icon-box-content {
		text-align: center;
	}

	span.btn-more {
		margin: 5px auto;
	}
}

@media screen and (max-width: 480px) {
    .post-type-archive-product .site-content:after, .tax-product-category .site-content:after {
        top: 550px;
        height: 300px;
    }
    ul.products li.product {
        flex-basis: 100%;
    }
    .woocommerce-tabs {
        padding-right: 20px;
    }
    .single-product footer.site-footer, .post-type-archive-product footer.site-footer, .tax-product-category footer.site-footer {
        margin-top: 0;
    }
	.bio-section::before {
        width: 30% !important;
        height: 500px !important;
    }
}

@media screen and (max-width: 420px) {
    .home-about-scroll-linked > .e-con-inner {
        padding-top: 20rem !important;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.9);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(60vh) scale(0.8);
        }
      }
    }
}

@media screen and (max-width: 414px) {
    .home-about-scroll-linked > .e-con-inner {
        padding-top: 17rem !important;
    }
    
    @supports (animation-timeline: scroll()) {
      .hero-scroll-linked-image-wrapper img {
        animation-name: hero-shrink-move;
        animation-timeline: scroll();         /* gunakan scroll timeline otomatis */
        animation-range: 0% 60vh;             /* <- tuning: kapan animasi mulai & berhenti */
        animation-duration: 1s;               /* wajib di-set (value formal) */
        animation-fill-mode: both;
        animation-timing-function: linear;
      }
    
      @keyframes hero-shrink-move {
        /* 0% = awal (hero terlihat besar) */
        0% {
          transform: translateX(0) translateY(0) scale(1);
        }
        /* 60% = antara (opsional smoothing) */
        60% {
          transform: translateX(0) translateY(20vh) scale(0.9);
        }
        /* 100% = akhir (pada posisi 'landing' di kolom kanan) */
        100% {
          transform: translateX(0) translateY(62vh) scale(0.8);
        }
      }
    }
}

@media screen and (max-width: 340px) {
    /*.home-about-scroll-linked > .e-con-inner {*/
    /*    padding-top: 17rem !important;*/
    /*}*/
}