
:root {
    --doodle-pink: #ff3b7c;
}

/* =========================
   GLOBAL LAYOUT FIX
========================= */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ini yang bikin footer stay di bawah */
.main-content {
    flex: 1;
    display: block;
}

.main {
    width: 100%;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Quicksand, sans-serif;
    background: #fff;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
}



/* CONTAINER */
.outer-frame {
    max-width: 1300px;
    margin: 0 auto;

    padding: 20px 20px 40px;

    background: #fff;

    width: 100%;
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 20px 40px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 3000;

    background: url('/static/img/background_topbar.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;

    border-bottom: none;

    min-height: 90px; /* tinggi header */
    display: flex;
    align-items: center;

    position: relative;
}

/* BLUR FADE KE BAWAH */
.header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px; /* ⬅️ PINDAH KE LUAR */
    width: 100%;
    height: 40px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.4) 0%,
        rgba(255,255,255,0.9) 100%
    );

    pointer-events: none;
}


.header-inner {
    width: 100%;
    max-width: 1800px;
    margin: auto;

    padding: 0px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FIX posisi kiri-kanan */
.logo {
    height: 40px;
    margin-left: 10px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 3100;
}

/* MOBILE MENU DEFAULT HIDDEN */
.menu {
    position: fixed;
    top: 0;
    right: -100%; /* sembunyi */
    width: 80%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;

    -webkit-backdrop-filter: none;

    transition: right 0.4s ease;
    padding: 30px;
}

/* SAAT AKTIF */
.menu.active {
    right: 0;
}

/* =========================
   NAV DESKTOP
========================= */
.nav {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-right: 10px;
}

.nav a {
    text-decoration: none;
    color: #b08b2e;
    font-size: 13px;
    font-weight: 600;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
}

.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }

/* =========================
   SECTION
========================= */

/* KHUSUS SECTION BESAR */
.hero-slider,
.product-big,
.podcast,
.podcast-player {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero img,
.product-big img,
.card img,
.video img {
    width: 100%;
    border-radius: 10px;
}

/* =========================
   SPACING ANTAR BANNER BESAR
========================= */

/* product besar ke product besar berikutnya */
.product-big + .product-big {
    margin-top: 30px;
}

/* GRID */
.grid-2 .card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    position: relative;
}

.grid-2 .card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1158 / 1271;
    object-fit: contain;
    display: block;
}

.grid-2 {
    width: 100%;
    max-width: 1200px;   /* 🔥 KUNCI BIAR KECIL */
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* =========================
   SPACING FIX ANTAR SECTION
========================= */

/* jarak antara GRID (produk) ke banner Gentle Wash */
.grid-2 + .product-big {
    margin-top: 30px;
}

/* jarak antara Gentle Wash ke Podcast */
.product-big + .podcast {
    margin-top: 30px;
}

.podcast + .support-section-modern {
    margin-top: 10px !important;
}

.card {
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* =========================================
   VIDEO MODERN
========================================= */

.video-modern-section{
    width: 100%;
}

.video-modern-wrapper{

    width: 100%;
    overflow: hidden;

    border-radius: 28px;

    background: #000;

    box-shadow:
        0 12px 40px rgba(0,0,0,0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* hover subtle */
.video-modern-wrapper:hover{

    transform: translateY(-3px);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.18);
}

.video-modern-player{
    width: 100%;
    display: block;
}

/* PLYR */

.plyr{
    border-radius: 28px;
}

.plyr--video{
    background: #000;
}

/* warna doodle */
:root{
    --plyr-color-main: #ff4fa3;
}

/* play button tengah */
.plyr__control--overlaid{
    background: rgba(255,79,163,0.9);
}

/* hover play */
.plyr__control--overlaid:hover{
    background: #ff4fa3;
}


/* SUPPORT GRID */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.support-title-link{
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.support-title-link h2{
    cursor: pointer;
    transition: 0.3s ease;
}

.support-title-link:hover h2{
    opacity: 0.7;
}

.box {
    padding: 40px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.pink { background: #ff4081; }
.green { background: #4caf50; }
.orange { background: #ff9800; }
.purple { background: #9c27b0; }

/* SHOP */
.marketplace {
    display: flex;
    gap: 15px;
}

.marketplace a {
    display: inline-block;
}

.marketplace img {
    width: 60px;
    margin: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* hover subtle */
.marketplace a:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

/* =========================
   OVERLAY
========================= */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.2); /* lebih soft */
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    isolation: isolate;


    transition: all 0.25s ease;
    z-index: 1000;
}

.overlay-card {
    position: relative;
    overflow: hidden;
}

.overlay-card img {
    width: 100%;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================
   FORCE OVERLAY MODE
========================= */

.card.overlay-top {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
}

/* IMAGE FULL */
.card.overlay-top img {
    width: 100%;
    display: block;
}

/* TEXT MASUK KE GAMBAR */
.card-overlay-top {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;

    text-align: center;
    z-index: 3;
}

/* HILANGKAN TEXT STYLE LAMA */
.card h3,
.card p {
    margin: 0;
}

.card-overlay-top h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    color: #6f6f6f;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card-overlay-top p {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #8a8a8a;
    letter-spacing: 0.2px;
}


.podcast {
    width: 100%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-link {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.podcast-link a {
    font-size: 14px;
    display: inline-block;
    margin-top: 12px;
    color: var(--doodle-pink);
    font-weight: 600;
}

/* =========================
   PODCAST PLAYER SECTION
========================= */

.podcast-player {
    max-width: 1200px;
    margin: 30px auto 0;
}

.podcast-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LEFT PLAYER */
.podcast-left {
    flex: 1;
}

/* ================= LEFT PLAYER ================= */

.player-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 20px;
    border-radius: 16px;

    background: linear-gradient(135deg, #c70039, #ff3b7c);
    color: #fff;
}

/* THUMB */
.player-thumb {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
}

/* TEXT */
.player-center h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.player-center p {
    font-size: 12px;
    opacity: 0.8;
}

/* CONTROL */
.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.progress {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
}

/* PLAY BUTTON */
.player-right {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

/* RIGHT PLATFORM */
.podcast-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.platform-group {
    display: flex;
    gap: 15px;
}

/* NO BLACK BG */
.platform-item {
    background: transparent;
    padding: 0;
}

/* FULL IMAGE */
.platform-item img {
    height: 55px;
    display: block;
}

/* hover halus */
.platform-item:hover {
    transform: translateY(-2px);
    transition: 0.2s;
}

/* BUTTON STYLE */
.platform-btn {
    display: inline-block;
    background: #000;
    padding: 10px 18px;
    border-radius: 10px;
    transition: 0.25s;
}

.platform-btn img {
    height: 28px;
    display: block;
}

/* hover halus */
.platform-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* SUPPORT SECTION MODERN */
.support-section-modern {
    padding: 15px 0;
}

.support-section-modern + .video {
    margin-top: 10px !important;
}

.support-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #f5eaea;
    border-radius: 30px;
    padding: 25px;

    display: flex;
    gap: 20px;
    align-items: center;
}

/* LEFT TEXT */
.support-text {
    width: 35%;
}

.support-text h2 {
    font-size: 48px;
    font-weight: 600;
    color: #555;
    line-height: 1.1;
}

/* GRID RIGHT */
.support-grid-image {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* ITEM */
.support-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: scale(0.98);
}

.support-item img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* HOVER EFFECT */
.support-item:hover {
    transform: translateY(-5px) scale(1.03);
}

.support-section {
    background: #f9f9f9;
    padding: 50px 30px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.support-left h2 {
    font-size: 28px;
}

.support-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.support-card {
    padding: 40px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
}

.blue { background:#0d47a1; }
.gold { background:linear-gradient(135deg,#c9a24d,#f5e3a1); }

.center-video {
    width: 100%;
}

.center-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
}



/* =========================
   DRAWER MENU
========================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;

    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    padding: 20px;

    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    box-shadow: 
        -10px 0 30px rgba(0,0,0,0.08),
        -2px 0 10px rgba(0,0,0,0.05);

    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    text-align: right;
    font-size: 22px;
    margin-bottom: 20px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav a {
    text-decoration: none;
    color: #b08b2e;
    font-weight: 600;
    font-size: 14px;

    padding: 8px 10px;
    border-radius: 6px;

    transition: all 0.2s ease;
}

/* hover / tap */
.mobile-nav a:hover {
    background: rgba(176,139,46,0.08);
}

/* active page */
.mobile-nav a.active {
    background: rgba(176,139,46,0.15);
    color: #8c6c1f;
}


/* =========================
   SCROLL ANIMATION
========================= */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* SHOP SECTION */
.shop {
    text-align: center;
    padding: 80px 20px;
    background: transparent;
    border-radius: 0;
    padding: 60px 20px;
}

.shop h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ICON WRAPPER */
.marketplace {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ICON */
.marketplace img {
    width: 82px;
    height: auto;
    transition: 0.3s;
    cursor: pointer;
}

.marketplace img:hover {
    transform: scale(1.1);
}

/* ======================
   FOOTER CLEAN FINAL
====================== */

.footer {
    position: relative;
    padding: 80px 20px 30px;
    margin-top: 0;
    overflow: hidden;
}

/* background awan */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/static/img/footer/awan_website.png') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

/* content layer */
.footer-container,
.footer-bottom {
    position: relative;
    z-index: 2;
}

/* layout utama */
.footer-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* kiri */
.footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* logo */
.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-logo-sub {
    width: 55px;
    opacity: none;
}

.footer-logo {
    width: 210px;
    display: block;
    margin: 0 auto;
}

/* menu */
.footer-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-menu a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #FF3874;
}

/* kanan */
.footer-right {
    display: flex;
    align-items: center;
}

.social {
    display: flex;
    gap: 14px;
}

.social img {
    width: 22px;
}

/* bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    font-size: 12px;
    color: #999;
}

.footer-bottom-right {
    font-size: 12px;
}

.footer-divider {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin: 30px 0 20px;
}

.footer-top {
  position: relative;
  z-index: 1;
}

/* powered */
.powered-text {
    font-weight: 700;
    color: #000;
}

.brand-text {
    font-weight: 700;
    color: var(--doodle-pink);
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.brand-text:hover {
    opacity: 0.7;
}

/* =========================
   HERO WRAPPER (CONTAINER BESAR)
========================= */

.hero-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
    overflow: visible;
    padding: 0;
    background: transparent;
}

.hero-wrapper::before,
.hero-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: none;
}

.hero-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.hero-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.preview {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 20%;              /* 🔥 lebih kecil */
    height: 80%;             /* 🔥 ga full tinggi */

    opacity: 0.5;
    filter: blur(2px);

    pointer-events: none;
    z-index: 1;
}

/* kiri */
.preview-left {
    left: -200px;
}

/* kanan */
.preview-right {
    right: -200px;
}

.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transform: none;
    filter: none;
    opacity: 0.9;
}


.preview-left img,
.preview-right img {
    transform: none;
}

.preview::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* ===========================================
   HERO SLIDER 
=============================================*/
/* HERO SLIDER CENTER MODE */

.hero-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    overflow: hidden;
    position: relative;


    border-radius: 20px;
    background: transparent; 

    padding: 0 40px;
    display: block;
    text-align: center;
    z-index: 5;
    margin-top: 0 !important;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    align-items: center;

    justify-content: flex-start; 
    transition: transform 0.5s ease;
}

.slider-container {
    position: relative;
    z-index: 2; /* DI ATAS preview */
}

/* slide item */
.slide-item {
    flex: 0 0 100%;
    margin: 0;

    opacity: 1;
    filter: none;

    transform: none;
}

/* image */
.slide-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 20px;
}

/* ACTIVE (tengah) */
.slide-item.active {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* side blur */
.slide-item.active img {
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* DOTS */
.slider-dots {
    position: relative;
    margin-top: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    left: 0;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;

    margin: 0 6px;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    width: 24px;
    background: #FF3874;
}

.slide img {
    width: 100%;
    display: block;
}

/* =========================
   GLOBAL ALIGN FIX
========================= */

/* wrapper isi biar rapi */
.section-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

section:not(.hero-slider) {
    margin-top: 30px;
}

/* JARAK KHUSUS ANTARA GENTLE WASH → PODCAST */
.product-big + .podcast {
    margin-top: 30px;
}

.product-big,
.grid-2 {
    padding: 0 10px;   /* biar kiri kanan align visual */
}

.hero-slider,
.product-big,
.grid-2,
.podcast,
.video,
.shop {
    width: 100%;
}

/* =========================
   PRODUCT + CARD FIX
========================= */

.product-big img,
.podcast img {
    width: 100%;
    aspect-ratio: 1191 / 600;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* =========================
   PODCAST FIX
========================= */

.podcast {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.podcast img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.center-video video {
    max-width: none !important;
}

/* =========================
   SHOP FIX
========================= */

.shop {
    width: 100%;
}

.shop .section-inner {
    text-align: center;
}

/* =========================
   SPACING FIX
========================= */

section {
    margin-top: 20px;
}

section + section {
    margin-top: 20px;
}

/* =========================
   CARD OVERLAY (FINAL FIX)
========================= */

.overlay-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

/* gambar */
.overlay-card img {
    width: 100%;
    display: block;
}

/* layer hitam gradasi */
.overlay-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.0)
    );

    z-index: 1;
}

/* judul */
.card-overlay h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 700;
}

/* deskripsi */
.card-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* action */
.card-action {
    display: flex;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* warna */
.learn {
    color: #f5c04d;
}

.buy {
    color: #ff3b7c;
}

/* hover */
.overlay-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}

/* =========================
   CARD OVERLAY TOP CENTER
========================= */

.overlay-top {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* image */
.overlay-top img {
    width: 100%;
    display: block;
}

/* TEXT AREA */
.card-overlay-top {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;

    text-align: center;
    z-index: 2;
}

/* TITLE */
.card-overlay-top h3 {
    font-size: 34px;
    font-weight: 600;
    color: #6f6f6f;
    margin-bottom: 5px;
}

/* SUBTITLE */
.card-overlay-top p {
    font-size: 18px;
    color: #8a8a8a;
    margin-bottom: 12px;
}

/* ACTION */
.card-action {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* warna khas doodle */
.learn {
    color: #c89b2c;
}

.buy {
    color: #FF3874;
}

/* hover halus */
.overlay-top:hover img {
    transform: scale(1.04);
    transition: 0.4s ease;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
            transition: transform 0.2s ease;
    }

    .menu-toggle:active {
        transform: scale(0.9);
    }

    .header-inner {
        padding: 12px 10px;
    }

    .logo {
        margin-left: 5px;
    }

    .menu-toggle {
        margin-right: 5px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card {
        padding: 10px;
    }

    .card img {
        border-radius: 10px;
    	display: block;
    }

    .support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .box {
        padding: 20px;
        font-size: 13px;
    }

    .container {
        padding: 12px;
    }

    section {
        margin-top: 25px;
    }

    h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
	align-items: center;
	gap: 25px;
    }
	
    .marketplace img {
        width: 70px;
    }

    .social img {
        margin: 0 8px;
    }

    .podcast-row {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .podcast-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .podcast img {
        width: 100%;
        border-radius: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
	align-items: center;
	gap: 10px;
    }

    .footer-bottom-right {
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
        align-items: center;
	text-align: center;
        gap: 15px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-menu {
        flex-direction: column;
        align-items: center;
	gap: 10px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }

    .slide-item {
        flex: 0 0 100%;
        margin: 0;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .slide-item.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide-item img {
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

    .slider-viewport {
        padding: 10px 0;
    }

    .slide-item:not(.active) img {
        filter: none;
    }

    .video-modern-wrapper{
        border-radius: 18px;
    }

    .plyr{
        border-radius: 18px;
    }

    .card-overlay h3 {
        font-size: 16px;
    }

    .card-overlay p {
        font-size: 12px;
    }

    .card-action {
        font-size: 11px;
        gap: 12px;
    }

    .card-overlay-top {
        top: 15px;
        padding: 0 10px;
    }

    .card-overlay-top h3 {
        font-size: 20px;
    }

    .card-overlay-top p {
        font-size: 13px;
    }

    .card-action {
        font-size: 12px;
        gap: 15px;
    }

}



/* =========================================
   RESPONSIVE SYSTEM (FIX TOTAL)
========================================= */

/* =========================
   TABLET (<= 1024px)
========================= */
@media (max-width: 1024px) {

    /* HERO */
    .hero-wrapper {
        margin: 20px auto;
    }

    .hero-slider {
        padding: 0 20px;
    }

    .slide-item img {
        max-height: 420px;
    }

    /* PREVIEW */
    .preview {
        width: 20%;
        opacity: 0.5;
    }

    .preview-left {
        left: -120px;
    }

    .preview-right {
        right: -120px;
    }

    /* GRID PRODUK */
    .grid-2 {
        gap: 16px;
    }

    /* SUPPORT */
    .support-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }

    .support-text {
        width: 100%;
    }

    .support-text h2 {
        font-size: 32px;
    }

    .support-grid-image {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

    /* HERO FULL WIDTH */
    .hero-wrapper {
        padding: 0;
    }

    .hero-slider {
        padding: 0;
        border-radius: 0;
    }

    .slide-item img {
        height: 240px;
        object-fit: cover;
        border-radius: 0;
    }

    /* HIDE PREVIEW (WAJIB DI MOBILE) */
    .preview {
        display: none;
    }

    /* DOTS */
    .slider-dots {
        margin-top: 12px;
    }

    /* GRID PRODUK JADI 1 */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* CARD */
    .card {
        border-radius: 14px;
    }

    /* PRODUCT BIG */
    .product-big img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 14px;
    }

    /* SUPPORT */
    .support-section-modern {
        padding: 20px 0;
    }

    .support-wrapper {
        padding: 18px;
        border-radius: 18px;
    }

    .support-text h2 {
        font-size: 24px;
    }

    .support-grid-image {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .support-item img {
        border-radius: 14px;
    }

    /* PODCAST */
    .podcast-row {
        flex-direction: column;
        gap: 15px;
    }

    .platform-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* MARKETPLACE */
    .marketplace {
        gap: 15px;
    }

    .marketplace img {
        width: 70px;
    }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {

    .slide-item img {
        height: 200px;
    }

    .support-text h2 {
        font-size: 20px;
    }

    .support-grid-image {
        gap: 8px;
    }

    .marketplace img {
        width: 60px;
    }
}
