@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@font-face {
  font-family: 'glacial-indifference';
  src: url('../font/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
    --bg-body: #fcfcfa;
    --bg-hero: #dad5ca;
    --bg-card: #ffffff;
    --text-dark: #000000;
    --text-muted: #403f3e;
    --text-title: #736859;
    --primary-accent: #c0a062;
    --btn-olive: #706852;
    --border-light: #e8e3d8;
    --shopee: #ee4d2d;
    --lazada: #0f146d;
    --tokopedia: #00aa5b;
    --tiktok: #000000;
    --bg-color: var(--bg-body);
    --card-bg: var(--bg-card);
    --accent-black: #000000;
    --font-serif: 'Poppins', 'Cinzel', 'Playfair Display', 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: clip !important;
    overflow-y: visible !important;
}

body {
    font-family: var(--font-serif);
    background-color: var(--bg-body);
    color: var(--text-dark);
}

h1, h2, h3, 
.brand-logo, 
.hero-title, 
.hero-brand-large {
    font-family: var(--font-serif);
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
}

.page-section {
    background-color: var(--bg-color);
    padding: 40px 20px;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 85px;
}

.brand-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-logo span {
    font-size: 21px;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    list-style: none;
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 4px;
    position: relative;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: #bfa15f;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #bfa15f;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* ==========================================
   3. HERO SECTION & SWIPER
   ========================================== */
.hero {
    background-color: #f4f4f4;
    padding: 20px 0;
}

.hero-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: capitalize;
}

.hero-title {
    font-size: 28px;
    line-height: 1.05;
    color: var(--text-title);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-domain {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 36px;
}

.btn-olive {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    background-color: var(--btn-olive);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.btn-olive:hover {
    opacity: 0.9;
}

.btn-olive i {
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    line-height: 1;
}

.btn-olive:hover i {
    transform: translateX(8px);
}

.hero-brand-large {
    text-align: center;
    font-size: 76px;
    color: #7b7162;
    letter-spacing: 4px;
    line-height: 1;
    font-weight: 600;
}

.hero-brand-large span {
    display: block;
    font-size: 42px;
    letter-spacing: 16px;
    margin-top: 10px;
}

/* Swiper Hero Specifics */
.hero-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 100vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding: 60px 0;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #556B2F;
    height: 26px;
    width: 26px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-swiper .swiper-button-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.hero-swiper .swiper-button-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 24px;
}

.hero-swiper:hover .swiper-button-prev,
.hero-swiper:hover .swiper-button-next {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: #556B2F;
}

/* ==========================================
   4. SECTION HEADERS & TITLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    align-self: center;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
    border-bottom: 2px solid #ff4d4d;
    padding-bottom: 4px;
    display: inline-block; 
}

.section-tag1 {
    align-self: center;
    width: fit-content;
    font-size: 28px;    
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff4d4d;
    padding-bottom: 4px;
    display: inline-block; 
}

.section-tag-2 {
    align-self: center;
    width: fit-content;
    font-size: 24px !important;  
    text-transform: uppercase;  
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: -40px;
    border-bottom: 2px solid #86746f;
    padding-bottom: 0px;
    display: inline-block; 
}

.section-title,
h4.section-title {
    align-self: center;
    width: fit-content;
    font-size: 2rem;
    color: var(--text-title);
    font-family: var(--font-serif);
    font-weight: 700;
    border-bottom: 2px solid #ff4d4d;
    padding-bottom: 4px;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 6px;
}

.section-subtitle-1 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    
    /* Text wrapping and line control */
    overflow-wrap: break-word; /* Prevents long words/overflow */
    text-wrap: balance;        /* Keeps multi-line text balanced cleanly */
}
/* ==========================================
   5. JOURNEY & TRACK RECORD
   ========================================== */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.carousel-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 110px;
}

.carousel-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
}

.track-record-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.track-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.track-card h4 {
    color: var(--primary-accent);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.track-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================
   6. ABOUT & FOUNDERS
   ========================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-body);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-text {
    max-width: 920px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-body);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.founder-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.profiles-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-wrapper {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 3px solid #cca14e;
    padding: 6px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #8c734b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
}

.content-column {
    display: flex;
    flex-direction: column;
}

.description {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1px;
    text-align: justify;
    line-height: 1.4;
    flex-grow: 1;
}

.guarantee-box {
    background-color: #f9f9f6;
    border: 1px solid #e2d3b3;
    border-left: 4px solid #cca14e;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 20px;
}

.guarantee-title {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guarantee-item {
    font-size: 0.9rem;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.icon {
    color: #cca14e;
    font-size: 1.1rem;
    line-height: 1;
}

/* ==========================================
   7. PRODUCTS CATALOG
   ========================================== */
.products-section {
    padding: 32px 0 38px;
    background-color: #ffffff;
}

.product-category-block {
    margin-bottom: 80px;
}

.pills-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pill {
    background-color: #ece6da;
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.product-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.product-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f2efe9;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-thumb-wrapper:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: #ffffff;
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.product-body {
    padding: 20px;
    text-align: center;
}

.product-body h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Store Link Buttons */
.store-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.btn-store {
    padding: 8px 0;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

.shopee { --brand-color: var(--shopee, #EE4D2D); }
.lazada { --brand-color: var(--lazada, #0F146D); }
.tokopedia { --brand-color: var(--tokopedia, #03AC0E); }
.tiktok { --brand-color: var(--tiktok, #000000); }

.btn-store.shopee, .card-button.shopee { background-color: var(--shopee); }
.btn-store.lazada, .card-button.lazada { background-color: var(--lazada); }
.btn-store.tokopedia, .card-button.tokopedia { background-color: var(--tokopedia); }
.btn-store.tiktok, .card-button.tiktok { background-color: var(--tiktok); }

/* ==========================================
   8. PERJALANAN SLIDER 
   ========================================== */
.tab-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.tab-btn {
    background-color: #ffffff;
    border: 1px solid #e8e3d8;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tab-btn .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c0a062;
}

.tab-btn.active {
    background-color: #111111;
    color: #f3e3be;
    border: 1px solid #c0a062;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tab-btn.active .dot {
    background-color: #c0a062;
}

.slider-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide-img.active {
    opacity: 1;
}

.image-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(50, 50, 50, 0.6);
    padding: 6px 12px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.page-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.page-dot.active {
    background-color: #c0a062;
    width: 18px;
    border-radius: 10px;
}

.content-container {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #ebd9b5;
    border-radius: 28px;
    padding: 40px 45px 30px;
    display: flex;
    width: 550px;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.content-container::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background-color: #f7f3e8;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.step-counter {
    position: absolute;
    top: 40px;
    right: 45px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #8c7f6b;
    letter-spacing: 1px;
    z-index: 1;
}

.slide-content {
    display: none;
    z-index: 1;
}

.slide-content.active {
    display: block;
}

.badge-icon {
    color: #c0a062;
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f7f3ea;
    border: 1px solid #e2d7c0;
    padding: 0 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #70634e;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.content-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
    line-height: 1.15;
}

.content-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #8c7f6b;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #c0a062;
    margin-top: 16px;
}

.content-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-top: 20px;
}

.footer-note {
    position: relative;
    z-index: 1;
    width: 85%;                  
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0eae1;
    font-size: 0.85rem;
    color: #666666;
    margin-top: auto;
}

.footer-note .footer-text {
    display: none;
}

.footer-note .footer-text.active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pojok-ngisor {
    font-size: 0.78rem;
    color: #a09888;
    float: right !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   9. FOOTER & MODALS
   ========================================== */
footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 1px;
}

.footer-col a {
    color: var(--brand-color, var(--text-muted));
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.footer-col a:hover,
.footer-col a:visited:hover {
    //background-color: var(--brand-color, var(--primary-accent));
    color: #ffffff !important;
}

.footer-col p i,
.footer-col a i.fa-brands {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.store-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 280px;
}

.store-item i {
    font-size: 16px;
}

a.store-item.shopee:hover {
    background-color: var(--shopee);
}
a.store-item.lazada:hover {
    background-color: var(--lazada);
}
a.store-item.tokopedia:hover {
    background-color: var(--tokopedia);
}
a.store-item.tiktok:hover {
    background-color: var(--tiktok);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================================
   MARKETPLACE BUTTONS
========================================= */

.action-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #f8f8f8;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.action-btn i {
    font-size: 14px;
    color: #ffffff !important;
}

.action-btn p {
    color: #ffffff !important;
}

.action-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.action-btn.shopee { background-color: #ee4d2d; }
.action-btn.lazada { background-color: #0f146d; }
.action-btn.tokopedia { background-color: #42b549; }
.action-btn.tiktok { background-color: #000000; }

a.muted {
    color: var(--text-muted);
    text-decoration: none;
}

a.muted:visited {
    color: #006bd6;
}

a.muted:hover {
    color: #006bd6 !important;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-container {
    background: #ffffff;
    border-radius: 8px;
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-gallery-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-gallery-slider img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 18px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
    border:1px solid transparent;
    border-radius:100px 100px 100px 100px;
    color:var(--global-palette1);
    background: #ffffff;
    border-color:var(--global-palette1);
    font-size:1.2em;
    padding:0.4em 0.4em 0.4em 0.4em;
}

/* Internal icon smooth transition */
.back-to-top svg,
.back-to-top i {

}

/* Show state */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover: lifts button and inner icon upward together */
.back-to-top.show:hover {
  background-color: #00b3ff;
    border:1px solid transparent;
    border-radius:100px 100px 100px 100px;
}

.back-to-top.show:hover :is(svg, i) {
  color: #ffffff;
}

/* Active click state */
.back-to-top.show:active {
  transform: translateY(-1px);
}

/* ==========================================
   11. CONTACT PAGE SPLIT LAYOUT
   ========================================== */
.contact-container {
    max-width: 100vw;
    background-color: var(--bg-card);
    padding: 50px 50px 60px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-page .section-header {
    margin-bottom: 10px;
}

.required-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.asterisk {
    color: var(--shopee);
    font-size: 14px;
    font-weight: bold;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--bg-body);
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-info-panel .panel-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-title);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--primary-accent);
}

.contact-info-panel .panel-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 22px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(192, 160, 98, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-actions .btn-olive {
    cursor: pointer;
    border: none;
    padding: 16px 36px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
}

.alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    position: relative;
}

.alert.success {
    background-color: #f4f7f2;
    border: 1px solid var(--btn-olive);
    color: var(--text-dark);
}

.alert.success h3 {
    margin-bottom: 4px;
    font-size: 16px;
    text-transform: uppercase;
}

.alert .close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================
   Product Display Page Styles
   ========================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 35px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.filter-sidebar {
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 240px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-self: start;
}

.filter-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0 0 15px;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-item {
    display: block;
    width: 100%;
    padding: 10px 12px;
    text-decoration: none;
    box-sizing: border-box;
    color: var(--text-muted);
}

.filter-item.active {
    font-weight: 600;
    color: #0048ff;
}

.shop-main {
    width: 100%;
    min-width: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
    min-width: 0;
}

.product-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.card-media {
    position: relative;
    background: #f8fafc;
    padding-top: 100%;
    overflow: hidden;
    width: 100%;
}

.card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-media img {
    transform: scale(1.05);
}

.card-body {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-description {
    color: #595959;
    font-weight: 500;
    font-size: 0.8rem !important;
    display: block;
}

.product-category {
    font-size: 1rem;
    text-transform: capitalize;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem !important;
    font-weight: 500;
    margin:  0 0.75rem 0;
    padding-top: 6px;
    line-height: 1.4;
    display: block;
}

.product-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #2563eb;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.old-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-cart {
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-cart:hover {
    background: #1d4ed8;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-select {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    color: #334155;
    font-size: 0.9rem;
    outline: none;
}

/* Testimonial Column Styles */
.containere {
    display: flex;
    gap: 20px;  
    align-items: stretch;
}

.column {
    flex: 1;             
    padding: 20px 50px 10px 50px; 
    background: #ffffff;
    display: flex;       
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
}

.container_testi {
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;      
    gap: 16px;       
}

.column_testi {
    width: 100%;
}

.column_testi img.testimoni {
    width: 100%;
    height: auto;
    max-width: 140px;    
    max-height: 140px;   
    aspect-ratio: 1 / 1; 
    object-fit: cover;   
    border-radius: 50%;  
    display: block;
    margin: 0 auto;
}

.testi_isi {
    margin-top: 50px;
}

.column1 img.testimoni1 {
    width: 100%;
    height: 100%;
    max-width: 220px;  
    max-height: 220px; 
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
}

.column img.testimoni {
    width: 100%;
    height: 100%;
    max-width: 220px;  
    max-height: 220px; 
    aspect-ratio: 1 / 1; 
    object-fit: cover;  
    border-radius: 50%;  
    margin: 0 auto;
    display: block;
}

.whatsapp-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;

}

.whatsapp-button {
    max-width: 35px;
    height: 35px;  
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 1s ease, background-color 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-text {
    background-color: #ffffff;
    color: #333333;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);

}

.whatsapp-container:hover .whatsapp-button {
    animation: floatUpDown 1s ease-in-out;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


.slider-container {
    position: relative;
    max-width: 100%;
    height: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 6px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.featured {
    background-color: #ffffff;
}

/* Featured Products Grid Override */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 18px;
    row-gap: 18px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: start;
}

.products-grid .product-card {
    width: 282px;
    height: 491px;
    min-width: 282px;
    max-width: 282px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-grid .card-animate::before {
    display: none;
}

.products-grid .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.products-grid .product-card > .modal-trigger {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 0 0 424px;
    padding: 0 !important;
    margin: 0;
    color: inherit;
    text-decoration: none;
}

.products-grid .card-top {
    width: 282px;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    flex: 0 0 280px;
    position: relative;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.products-grid .product-img {
    display: block;
    width: 240px;
    height: 240px;
    max-width: 240px;
    max-height: 240px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.products-grid .product-card:hover .product-img {
    transform: scale(1.01);
}

.products-grid .card-bottom {
    width: 282px;
    height: 144px;
    min-height: 144px;
    max-height: 144px;
    flex: 0 0 144px;
    padding: 10px 18px 10px 10px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.products-grid .card-bottom .title {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #0087f5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.products-grid .card-bottom .description {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    flex: 1;
}

.products-grid .product-modal-data {
    display: none !important;
}

.card {
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.card-animate {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-animate:hover {
    -webkit-transform: translateY(calc(-1.5rem / 5));
    transform: translateY(calc(-1.5rem / 5));
    box-shadow: 0 5px 10px rgba(30, 32, 37, .12);
}

.card-animate:hover::before {
    opacity: 1;
}

.unstyled-link,
.unstyled-link:visited,
.unstyled-link:hover,
.unstyled-link:active,
.unstyled-link:focus {
    color: inherit;
    text-decoration: none;
}

.card-top {
    background-color: #ffffff;
    position: relative;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.title {
    font-size: 15px;
    font-weight: bold;
    color: #1286e6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

/* =========================================================
   PRODUCT MODAL
========================================================= */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 24, 19, .78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: 90vh;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
    overflow: hidden;
    transform: translateY(20px) scale(.97);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.product-modal.is-open .product-modal-dialog {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #333;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    transition: transform .2s ease, background .2s ease;
}

.product-modal-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.product-modal-content {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(400px, 1fr);
    align-items: start;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-modal-content::-webkit-scrollbar {
    width: 7px;
}

.product-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-content::-webkit-scrollbar-thumb {
    background: #c4c8bd;
    border-radius: 20px;
}

.product-modal-gallery {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 45px;
    background: radial-gradient(circle at center, #ffffff 0%, #f7f6f2 50%, #edede7 100%);
}

.product-modal-main-image {
    position: relative;
    width: 100%;
    height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.product-modal-main-image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,.14));
    opacity: 1;
    transition: opacity .25s ease, transform .3s ease;
}

.product-image-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    filter: blur(35px);
    pointer-events: none;
}

.product-gallery-badge {
    top: 20px;
    left: 25px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #555;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.product-modal-thumbnails {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 5px;
}

.product-modal-thumbnail {
    width: 60px;
    height: 60px;
    padding: 3px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.product-modal-thumbnail:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.product-modal-thumbnail.active {
    opacity: 1;
    border: 2px solid #69735d;
}

.product-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.product-modal-info {
    padding: 65px 55px 50px;
    min-width: 0;
}

.product-info-eyebrow {
    margin-bottom: 10px;
    color: #7c856f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.product-modal-title {
    margin: 0;
    color: #30352d;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.product-modal-short {
    margin-top: 15px;
    color: #525252;
    font-size: 14px;
    line-height: 1.75;
}

.product-divider {
  width: 100%;
  height: 1px;
  margin: 12px 0 16px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    #89927b 20%, 
    #89927b 80%, 
    transparent 100%
  );
  border: none;
}

.divider {
    width: 100%;
    height: 2px;
    background: #6e6868;
    margin: 5px 0;
}

.product-info-section {
    margin-bottom: 27px;
}

.product-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-section-heading h3 {
    margin: 0;
    color: #3d4239;
    font-size: 14px;
    font-weight: 700;
}

.product-section-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f0f2eb;
    color: #717b66;
    font-size: 12px;
}

.product-rich-content {
    color: #6e746c;
    font-size: 13px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.product-rich-content p {
    margin: 0 0 10px;
}

.product-rich-content ul {
    margin: 8px 0 10px 20px;
    padding: 0;
}

.product-rich-content li {
    margin-bottom: 7px;
}

.product-purchase {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid rgba(90,100,75,.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #f8f9f4, #f1f3ed);
}

.purchase-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.purchase-heading span {
    display: block;
    color: #89927b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.purchase-heading h3 {
    margin: 4px 0 0;
    color: #3b4038;
    font-size: 17px;
}

.purchase-marketplaces {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.purchase-marketplaces .marketplace-button {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 68px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 7px 4px !important;
    border: 0 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #fff !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

.purchase-marketplaces .marketplace-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.purchase-marketplaces .marketplace-name {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    text-align: center !important;
    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.purchase-marketplaces .marketplace-shopee { background: #ee4d2d !important; }
.purchase-marketplaces .marketplace-lazada { background: #111b75 !important; }
.purchase-marketplaces .marketplace-tokopedia { background: #36b44a !important; }
.purchase-marketplaces .marketplace-tiktok { background: #050505 !important; }

.purchase-marketplaces .marketplace-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
}

.modal-shop-shopee .shop-icon { background: #fff1ed; color: #ee4d2d; }
.modal-shop-shopee:hover { border-color: rgba(238, 77, 45, .25); }
.modal-shop-shopee:hover .shop-icon { background: #ee4d2d; color: #fff; }

.modal-shop-lazada .shop-icon { background: #f1efff; color: #5f3dc4; }
.modal-shop-lazada:hover { border-color: rgba(95, 61, 196, .25); }
.modal-shop-lazada:hover .shop-icon { background: #5f3dc4; color: #fff; }

.modal-shop-tokopedia .shop-icon { background: #edf8f0; color: #03ac0e; }
.modal-shop-tokopedia:hover { border-color: rgba(3, 172, 14, .25); }
.modal-shop-tokopedia:hover .shop-icon { background: #03ac0e; color: #fff; }

.modal-shop-tiktok .shop-icon { background: #f2f2f2; color: #111; }
.modal-shop-tiktok:hover { border-color: rgba(0, 0, 0, .2); }
.modal-shop-tiktok:hover .shop-icon { background: #111; color: #fff; }

.kategori-title {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.6rem;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nduwur {
    padding-top: 12px;
    padding-bottom: 20px;
    text-align: center;
}

.ic-gold {
    color: #C8A145;
}

.depan-isi {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.welcome-card {
    background-color: #f5f7f7;
    border: 1px solid #e5e5e0;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    min-height: 100%;
    padding: 50px;
    top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.image-containeran {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.image-containeran img {
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-containeran {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: var(--font-serif);
}

.content-containeran h1 {
    color: #6b5b53;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.content-containeran p {
    color: #333333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'glacial-indifference', sans-serif;
}

.btno-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btno {
    background-color: #83746c;
    color: #ffffff;
    border: none;
    padding: 12px 44px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 24px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.btno:hover {
    background-color: #6b5b53;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #b5aba4;
}

.purpose-card {
    justify-content: center;
    align-items: center;
    background-color: #f7f7f5;
    border: 1px solid #e5e5e0;
    border-radius: 8px;
    max-width: 80%;
    min-height: 100vh;   
    padding: 50px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 auto;
}

.brand-header {
    text-align: center;
    margin-bottom: 45px;
    border-bottom: 1px solid #e5e5e0;
    padding-bottom: 30px;
    background-color: #ffffff;
}

.brand-header h2 {
    padding-top: 30px;
    color: #83746c;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.1;
}

.brand-header span {
    display: block;
    color: #83746c;
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-top: 5px;
    font-weight: 500;
}

.purpose-top {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.logo-box {
    background-color: #83746c;
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 2px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo-box span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

.purpose-text h3 {
    color: #6b5b53;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-family: var(--font-serif);
}

.purpose-text p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 100%;
}

.mission-vision-grid {
    margin-left: 7%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.mission-column {
    width: 100%;
    position: relative;
    padding-left: 90px;
    border-left: 2px solid #b5aba4;
}

.vision-column {
    width: 80%;
    padding-left: 10px;
}

.mission-column h4, .vision-column h4 {
    color: #6b5b53;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.mission-column p, .vision-column p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dots-container {
    position: absolute;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #83746c;
    border-radius: 50%;
}

.apart-card {
    background-color: #f7f7f5;
    border: 1px solid #e5e5e0;
    border-radius: 8px;
    width: 100%;
    padding: 50px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 auto;
}

.header-container {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.header-container h2 {
    color: #6b5b53;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: #dcdcd6;
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    background-color: #83746c;
    color: white;
    width: 76px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.icon-box svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.feature-item h3 {
    color: #6b5b53;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-item p {
    color: #333333;
    font-size: 0.88rem;
    line-height: 1.5;
    font-family: 'glacial-indifference', sans-serif;
}

.keuntungan-section {
    background-color: #ffffff;
    padding: 40px 20px;
}

.leadership-section {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.leadership-title {
    color: #5c4e46;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
}

.image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: #5c4e46;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.member-role {
    color: #222222;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.no-data-message {
    width: 100% !important;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 60px;
    padding: 40px;
    background-color: #ffffff;
}

.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
}

.pagination a,
.pagination strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease-in-out !important;
}

.pagination a:hover {
    background-color: #f7fafc !important;
    border-color: #cbd5e0 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
}

.pagination strong {
    background-color: #1a202c !important;
    color: #ffffff !important;
    border-color: #1a202c !important;
}

.product-carde {
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 2px solid var(--border-light);
    border-radius: 24px;   
}

/* ==========================================================
   MEDIA QUERIES & RESPONSIVE BREAKPOINTS
   ========================================================== */

/* Laptop / Desktop Limits */
@media (max-width: 1100px) {
    .shop-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 25px;
    }
    .filter-sidebar {
        width: 210px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
    .hero-grid, .hero-swiper, .journey-grid, .about-container, .slider-card, .contact-grid {
        gap: 30px;
    }
    .hero-title { font-size: 34px; }
    .hero-brand-large { font-size: 58px; }
    .hero-brand-large span {
        font-size: 34px;
        letter-spacing: 10px;
    }
    .products-grid .card-top, .products-grid .card-bottom {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .page-section { padding: 40px 16px; }

    .nav-container { height: 68px; padding-left: 16px; padding-right: 16px; }
    .brand-logo { font-size: 18px; letter-spacing: 1px; }
    .brand-logo span { font-size: 15px; letter-spacing: 0.5px; }

    .nav-links {
        gap: 16px;
        max-width: 62%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { font-size: 11px; letter-spacing: 0.5px; flex: 0 0 auto; }

    .hero { padding: 0; }
    .hero-grid, .hero-swiper, .journey-grid, .about-container, .slider-card, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 24px; }
    .hero-swiper {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 30px 0 40px;
        max-height: none;
    }
    .hero-subtitle { font-size: 12px; margin-bottom: 18px; }
    .hero-title { font-size: 29px; line-height: 1.15; letter-spacing: 1px; margin-bottom: 16px; }
    .hero-domain { font-size: 13px; margin-bottom: 24px; }
    .btn-olive { padding: 12px 20px; font-size: 12px; width: 100%; justify-content: center; }
    .hero-brand-large { font-size: clamp(42px, 15vw, 64px); letter-spacing: 2px; word-break: break-word; }
    .hero-brand-large span { font-size: clamp(22px, 8vw, 34px); letter-spacing: 7px; }
    .hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev { display: none; }

    .section-header { margin-bottom: 28px; }
    .section-tag, .section-tag1 { font-size: 16px; letter-spacing: 2px; }
    .section-title { font-size: 1.6rem !important; line-height: 1.25; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 13px; }

    .journey-grid { gap: 24px; }
    .carousel-card { position: relative; top: auto; padding: 14px; }
    .carousel-img { height: auto; aspect-ratio: 4 / 3; }
    .track-card { padding: 16px; }

    .about-section { padding: 50px 0; }
    .about-text { margin-bottom: 30px; font-size: 14px; text-align: left; }
    .founders-grid { grid-template-columns: 1fr; gap: 16px; }
    .founder-card { gap: 14px; padding: 16px; }
    .founder-img { width: 64px; height: 64px; }

    .about-container { gap: 30px; }
    .profiles-column { gap: 28px; }
    .avatar-wrapper { width: 140px; height: 140px; }
    .description { font-size: 14px; text-align: left; line-height: 1.6; }
    .guarantee-box { padding: 16px; }
    .guarantee-item { font-size: 13px; }

    .products-section { padding: 50px 0; }
    .product-category-block { margin-bottom: 50px; }
    .pills-container, .tab-navigation {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 6px;
    }
    .pills-container::-webkit-scrollbar, .tab-navigation::-webkit-scrollbar { display: none; }
    .pill, .tab-btn { flex: 0 0 auto; }

    .product-cards-grid, .product-grid, .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 10px;
    }

    .product-thumb-wrapper { height: auto; aspect-ratio: 1 / 1; }
    .product-body { padding: 12px; }
    .product-body h3 { font-size: 13px; margin-bottom: 10px; }

    .store-buttons { grid-template-columns: repeat(2, 1fr); gap: 5px; }
    .btn-store { font-size: 9px; padding: 7px 3px; }

    .action-buttons {
        display: flex;
        gap: 5px !important;
        align-items: center;
        justify-content: center;
    }
    .action-btn {
        width: 70px !important;
        height: 40px !important;
        padding: 4px 2px !important;
        border-radius: 5px !important;
    }
    .action-btn i { font-size: 11px !important; margin-bottom: 3px !important; }
    .action-btn p { font-size: 9px !important; }

    .slider-card { gap: 20px; max-width: 100%; }
    .image-container { width: 100%; aspect-ratio: 1 / 1; }
    .content-container { width: 100%; min-height: auto; padding: 18px; }
    .content-title { font-size: 1.5rem; }
    .content-description { font-size: 14px; }
    .footer-note { position: static; margin-top: 20px; }

    footer { padding: 40px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 28px; }
    .footer-col h4 { font-size: 17px; margin-bottom: 12px; }
    .footer-col p, .footer-col a { font-size: 13px; }
    .store-item { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 12px; }

    .contact-container { padding: 28px 16px 35px; border-radius: 8px; }
    .contact-grid { gap: 24px; }
    .contact-info-panel { padding: 22px 18px; }
    .contact-info-panel .panel-title { font-size: 19px; }
    .contact-info-panel .panel-desc, .info-item p { font-size: 13px; }
    .contact-form { gap: 17px; }
    .form-group input, .form-group textarea { padding: 12px 13px; font-size: 14px; }

    .modal { padding: 10px; }
    .modal-container { max-height: 94vh; padding: 20px 14px; border-radius: 8px; }
    .modal-close { top: 12px; right: 12px; font-size: 22px; }
    .modal-gallery-slider img { width: 78vw; height: 78vw; max-width: 280px; max-height: 280px; }

    .back-to-top { width: 40px; height: 40px; right: 16px; bottom: 16px; font-size: 16px; }

    .products-grid .product-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
    }
    .products-grid .card-top {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 10px;
    }
    .products-grid .product-img {
        width: 100%;
        height: 100%;
    }
    .products-grid .card-bottom {
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 10px;
    }
    .products-grid .card-bottom .title { font-size: 13px; line-height: 16px; margin-bottom: 10px; }
    .products-grid .card-bottom .description { font-size: 11px; line-height: 1.4; }

    .shop-layout { display: block; width: 100%; }
    .filter-sidebar { width: 100%; margin-bottom: 25px; }
    .shop-main { width: 100%; }
    .shop-toolbar { padding: 0.8rem; margin-bottom: 1rem; align-items: stretch; }
    .sort-select { width: 100%; }

    .containere { flex-direction: column; gap: 15px; }
    .column { padding: 20px 20px 10px 20px; }

    .welcome-card { flex-direction: column; padding: 20px; gap: 20px; }
    .welcome-card h1 { font-size: 1.8rem; }

    .purpose-card { padding: 30px 20px; }
    .mission-vision-grid { grid-template-columns: 1fr; gap: 25px; margin-left: 0; }
    .mission-column { margin-left: 0; padding-left: 20px; }
    .purpose-top { flex-direction: column; align-items: flex-start; }
    .dots-container { display: none; }
}

@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .apart-card { padding: 30px 20px; }
    .header-container h2 { font-size: 1.6rem; }
    .team-container { gap: 40px; }
}

@media (max-width: 400px) {
    .action-buttons { gap: 6px !important; }
    .action-btn {
        height: 50px !important;
        padding: 4px !important;
        border-radius: 16px !important;
    }
    .action-btn i { font-size: 14px !important; margin-bottom: 3px !important; }
    .action-btn p { font-size: 10px !important; }
}

@media (max-width: 380px) {
    .container, .nav-container { padding-left: 12px; padding-right: 12px; }
    .brand-logo { font-size: 16px; }
    .brand-logo span { font-size: 13px; }
    .nav-links { max-width: 58%; gap: 12px; }
    .product-cards-grid, .product-grid { gap: 8px; }
    .product-body { padding: 9px; }
    .store-buttons { grid-template-columns: 1fr; }
    .hero-title { font-size: 25px; }
    .products-grid { gap: 8px; padding: 0 5px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}





/* =========================================================
   FIX: GALLERY PREV / NEXT BUTTONS
   Center buttons vertically on the MAIN IMAGE,
   not on the entire gallery/modal
   ========================================================= */

.product-modal-gallery {
    --gallery-image-height: 430px;
}

/* Desktop */
.product-modal-gallery .gallery-nav {
    position: absolute;
    top: calc(45px + (var(--gallery-image-height) / 2));
    transform: translateY(-50%);

    z-index: 20;
}

/* Keep left/right positioning relative to the gallery */
.product-modal-gallery .gallery-prev {
    left: 18px;
}

.product-modal-gallery .gallery-next {
    right: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .product-modal-gallery {
        --gallery-image-height: 360px;
    }

    .product-modal-gallery .gallery-nav {
        top: calc(30px + (var(--gallery-image-height) / 2));
    }

    .product-modal-gallery .gallery-prev {
        left: 12px;
    }

    .product-modal-gallery .gallery-next {
        right: 12px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .product-modal-gallery {
        /*
         * Actual image area:
         * max 300px, minimum 210px
         */
        --gallery-image-height: max(210px, min(58vw, 300px));
    }

    .product-modal-gallery .gallery-nav {
        top: calc(
            22px + (var(--gallery-image-height) / 2)
        );
    }

    .product-modal-gallery .gallery-prev {
        left: 8px;
    }

    .product-modal-gallery .gallery-next {
        right: 8px;
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 380px) {

    .product-modal-gallery {
        --gallery-image-height: 230px;
    }

    .product-modal-gallery .gallery-nav {
        top: calc(18px + (var(--gallery-image-height) / 2));
    }

    .product-modal-gallery .gallery-prev {
        left: 6px;
    }

    .product-modal-gallery .gallery-next {
        right: 6px;
    }
}



.video-title {
    margin-top: 30px !important;
}


/* Modal Overlay Base Container */
.testimoni-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Open State */
.testimoni-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* Dark Backdrop Overlay */
.testimoni-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px); /* Modern blur effect */
}

/* Modal Content Card */
.testimoni-modal-container {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimoni-modal.is-open .testimoni-modal-container {
  transform: scale(1);
}

/* Close Button (X) */
.testimoni-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimoni-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Modal Inner Body & Layout */
.testimoni-modal-body {
  display: flex;
  flex-direction: column;
}

.testimoni-modal-image-wrapper {
  width: 100%;
  background-color: #f3f4f6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimoni-modal-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

/* Info Section (Variant & Title) */
.testimoni-modal-info {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.testimoni-modal-info h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.testimoni-modal-info h3 {
  font-size: 1.25rem;
  color: #111827;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}