
/* =========================================================
   DRW SKINCARE — PREMIUM SOFT PINK / FANTA LUXURY THEME
   Cocok untuk struktur HTML yang diberikan:
   assets/css/style.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --pink-soft: #e778a1;
    --pink-blush: #e484a9;
    --pink-light: #ffd2e2;
    --pink: #f6a1bd;
    --pink-strong: #ef5f91;
    --fanta: #ff3f86;
    --fanta-dark: #d92d70;
    --rose: #c92f65;
    --white: #ffffff;
    --cream: #fffafc;
    --text: #52273c;
    --muted: #806873;
    --line: rgba(205, 87, 128, .14);
    --shadow: 0 25px 55px rgba(192, 23, 116, 0.14);
    --shadow-heavy: 0 28px 80px rgba(211, 76, 126, .22);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1240px;
    --transition: .35s cubic-bezier(.2,.7,.2,1);
}

* {
    box-sizing: border-box;
    margin: 10  ;
    padding: 0;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.25;
    overflow-x: hidden;
    font-size: small;
}
/* =========================================================
   CATEGORY CARD — PINK FANTA TOUCH EFFECT
========================================================= */

.category-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    color: #542b3f;

    border: 1px solid #f1dce7;
    border-radius: 22px;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;

    cursor: pointer;
}


/* =========================================================
   SAAT DISENTUH / HOVER
========================================================= */

.category-card:hover,
.category-card:active,
.category-card:focus {
    background: linear-gradient(
        135deg,
        #e83d9b 0%,
        #f04fa7 50%,
        #d92f88 100%
    );

    color: #ffffff;

    border-color: #e83d9b;

    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(232, 61, 155, .28),
        0 0 35px rgba(255, 173, 215, .35);
}


/* =========================================================
   JUDUL
========================================================= */

.category-card strong {
    color: #542b3f;
    transition: color .3s ease;
}

.category-card:hover strong,
.category-card:active strong,
.category-card:focus strong {
    color: #ffffff;
}


/* =========================================================
   DESKRIPSI
========================================================= */

.category-card small {
    color: #927084;
    transition: color .3s ease;
}

.category-card:hover small,
.category-card:active small,
.category-card:focus small {
    color: rgba(255,255,255,.90);
}


/* =========================================================
   ICON
========================================================= */

.category-icon {
    background: #fff0f8;
    color: #e83d9b;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.category-card:hover .category-icon,
.category-card:active .category-icon,
.category-card:focus .category-icon {
    background: rgba(255,255,255,.20);
    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================================
   FOTO
========================================================= */

.category-image img {
    transition:
        transform .5s ease,
        filter .4s ease;
}

.category-card:hover .category-image img,
.category-card:active .category-image img {
    transform: scale(1.06);
}


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

@media (hover: none) {

    .category-card:active {
        background: linear-gradient(
            135deg,
            #e83d9b,
            #d92f88
        );

        color: #ffffff;

        transform: scale(.98);

        box-shadow:
            0 15px 40px rgba(232,61,155,.30);
    }

}   

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .25;
    background-image: 
        radial-gradient(circle, rgba(238, 151, 85, 0.9) 0 1px, transparent 1.5px);
    background-size: 75px 75px;
    mask-image: linear-gradient(to bottom, rgb(147, 8, 138), transparent 75%);
}

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

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: auto;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    min-height: 38px;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, #db9ab3, #db2769, #ff71a5, #52152c, #ff0062);
    color: #efe8ec;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.top-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 13px;
}

.top-bar a {
    transition: var(--transition);
}

.top-bar a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255,255,255,.9);
}

.divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.4);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 92px;
    padding: 14px 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(238, 92, 143, .1);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 8px 30px rgba(180, 52, 101, .06);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    position: relative;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #6b4a58;
    transition: var(--transition);
}

.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fanta), #ffb1ca);
    box-shadow: 0 0 10px rgba(255,63,134,.55);
    transition: width var(--transition);
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active {
    color: var(--fanta-dark);
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after {
    width: 100%;
}

.nav-left i {
    margin-left: 4px;
    font-size: 8px;
}

.logo {
    text-align: center;
    color: var(--fanta-dark);
    line-height: 1;
    position: relative;
}

.logo::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(255,91,145,.17), transparent 70%);
    filter: blur(7px);
    z-index: -1;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: .08em;
    text-shadow: 0 5px 20px rgba(239,95,145,.15);
}

.logo-sub {
    display: block;
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: .48em;
    margin-left: .48em;
    color: #9e6178;
}

.icon-btn,
.cart-btn,
.mobile-menu-toggle {
    border: 0;
    background: transparent;
    color: #6d4858;
    cursor: pointer;
}

.icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--fanta), #ff83ad);
    box-shadow: 0 8px 22px rgba(255,63,134,.25);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--fanta-dark), var(--fanta), #ff82aa);
    box-shadow: 0 8px 25px rgba(255,63,134,.3);
    transition: var(--transition);
}

.cart-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(255,63,134,.42);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 50%;
    background: #fff;
    color: var(--fanta-dark);
    border: 1px solid var(--pink-light);
    font-size: 9px;
    font-weight: 800;
}

.mobile-menu-toggle {
    display: none;
    font-size: 20px;
}

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

.mobile-navigation {
    position: fixed;
    top: 130px;
    left: 18px;
    right: 18px;
    z-index: 1100;
    padding: 22px;
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(20px);
}

.mobile-navigation a {
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #6f4a58;
}

.mobile-navigation a:hover {
    background: var(--pink-soft);
    color: var(--fanta-dark);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    background: rgba(65, 20, 38, .22);
    backdrop-filter: blur(4px);
}

.mobile-navigation.active,
.mobile-overlay.active {
    display: flex;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 650px;
    padding: 1px 6%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 63, 134, .17), transparent 24%),
        radial-gradient(circle at 90% 75%, rgba(255, 185, 209, .45), transparent 27%),
      
}

.hero::before,
.hero::after {
    content:icon;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 500px;
    height: 500px;
    right: -120px;
    top: 70px;
    background: radial-gradient(circle, rgba(163, 13, 13, 0.95), rgba(255,116,166,.13), transparent 68%);
    filter: blur(112px);
}

.hero::after {
    width: 8px;
    height: 8px;
    right: 23%;
    top: 22%;
    background: #fff;
    box-shadow:
        90px 80px 0 2px rgba(255,255,255,.9),
        -160px 130px 0 1px rgba(255,255,255,.85),
        210px 180px 0 1px rgba(255,255,255,.8),
        -90px -70px 0 1px rgba(255,255,255,.8);
    animation: twinkle 3.5s ease-in-out infinite;
}

.hero-content {
    width: min(650px, 90%);
    position: relative;
    z-index: 2;
}

.hero-eyebrow,
.featured-eyebrow,
.best-seller-eyebrow,
.ba-eyebrow,
.testimonial-eyebrow {
    display: inline-block;
    color: var(--fanta-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .22em;
}

.hero-eyebrow {
    margin-bottom: 1px;
}

.hero h1 {
    max-width: 700px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.035em;
    color: #402732;
}

.hero h1 span {
    display: block;
    font-style: italic;
    color: var(--fanta);
    text-shadow: 0 10px 35px rgba(255,63,134,.18);
}

.hero p {
    max-width: 540px;
    margin: 27px 0 35px;
    color: var(--muted);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-btn,
.hero-btn-secondary,
.ba-button,
.modal-add-cart,
.checkout-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    transition: var(--transition);
}

.hero-btn,
.ba-button,
.modal-add-cart,
.checkout-btn {
    color: #fff;
    background: linear-gradient(120deg, #d92d70, #ff3f86 55%, #ff8db3);
    box-shadow: 0 12px 30px rgba(239,95,145,.28);
}

.hero-btn:hover,
.ba-button:hover,
.modal-add-cart:hover,
.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(239,95,145,.38);
}

.hero-btn-secondary {
    color: var(--fanta-dark);
    border: 1px solid rgba(239,95,145,.3);
    background: rgba(255,255,255,.72);
    box-shadow: 0 8px 24px rgba(190,75,118,.08);
}

.hero-btn-secondary:hover {
    background: #fff;
    transform: translateY(-3px);
    border-color: rgba(239,95,145,.55);
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.product-categories {
    background: linear-gradient(145deg, #fff4f8, #fff);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    min-height: 25px;
    display:grid;
    flex-direction:var(--shadow-heavy) ;
    justify-content:var(--fanta-dark);
    position-area: var(--pink-strong);
    overflow:hidden;
    border-radius: 25px;
    border: 1px solid rgba(239,95,145,.12);
    background: #ec049f9d;
    box-shadow: 0 32px 35px rgba(188,72,115,.08);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.category-visual {
    position: absolute;
    inset: 0;
    color: rgba(214,48,104,.17);
    font-size: 60px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,.95), transparent 28%),
        linear-gradient(145deg, #ffe8f1, #fff);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    background: linear-gradient(to top, rgba(255,255,255,.98) 20%, rgba(255,255,255,.82), transparent);
}

.category-content h3 {
    margin: 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;
}

.category-content p {
    color: var(--fanta-dark);
    font-size: 10px;
    font-weight: 800;
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */

.before-after {
    background: #fff;
}

.ba-card {
    max-width: 900px;
    min-height: 380px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 75px 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    background: #fff7fa;
    box-shadow: var(--shadow);
}

.ba-image {
    min-height: 380px;
    display: grid;
    place-items: center;
    position: relative;
    background:
        radial-gradient(circle, rgba(255,255,255,.95), transparent 30%),
        linear-gradient(145deg, #ffe4ed, #fff);
}

.ba-image:last-child {
    background:
        radial-gradient(circle, rgba(255,255,255,.95), transparent 30%),
        linear-gradient(145deg, #ffd5e4, #fff);
}

.ba-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(55,30,39,.7);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.ba-divider {
    display: grid;
    place-items: center;
    background: #fff;
    position: relative;
}

.ba-divider::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 75%;
    background: var(--pink-light);
}

.ba-circle {
    width: 48px;
    height: 48px;
    z-index: 2;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--fanta);
    box-shadow: 0 8px 25px rgba(239,95,145,.3);
}

.ba-info {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
}

.ba-stars,
.testimonial-stars {
    color: #f7a42e;
    letter-spacing: .1em;
}

.ba-info h3 {
    margin: 9px 0;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
}

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

.ba-features {
    margin: 18px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ba-features span {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--pink-soft);
    color: var(--fanta-dark);
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,63,134,.12), transparent 30%),
        #fff7fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 30px;
    border: 1px solid rgba(239,95,145,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 35px rgba(190,70,116,.07);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.testimonial-text {
    margin: 16px 0 23px;
    color: #634a55;
    font-size: 13px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--fanta-dark), #ff8eb5);
    font-weight: 800;
}

.testimonial-user h4 {
    font-size: 13px;
}

.testimonial-user span {
    color: #9c7d89;
    font-size: 10px;
}

/* =========================================================
   PRODUCT MODAL
   ========================================================= */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.product-modal.active,
.product-modal[aria-hidden="false"] {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 15, 27, .48);
    backdrop-filter: blur(8px);
}

.product-modal-box {
    width: min(900px, 100%);
    max-height: 90vh;
    overflow: auto;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(40,10,23,.3);
}

.product-modal-close,
.cart-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    z-index: 5;
    border: 0;
    border-radius: 50%;
    color: #7a5260;
    background: #fff;
    box-shadow: 0 8px 22px rgba(100,35,58,.12);
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
}

.product-modal-close:hover,
.cart-close:hover {
    color: #fff;
    background: var(--fanta);
    transform: rotate(90deg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-modal-image {
    min-height: 520px;
    display: grid;
    place-items: center;
    padding: 40px;
    background: linear-gradient(145deg, #ffe6ef, #fff);
}

.product-modal-content {
    padding: 55px 42px;
}

.product-modal-category {
    color: var(--fanta-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.product-modal-content h2 {
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
    font-size: 39px;
    line-height: 0.1;
    font-weight: 10;
}

.modal-rating {
    margin: 12px 0;
    color: #f5a126;
    font-size: 14px;
}

.modal-rating span {
    margin-left: 6px;
    color: #81646f;
    font-size: 11px;
}

.product-modal-price {
    margin: 18px 0;
    color: var(--fanta-dark);
    font-size: 25px;
    font-weight: 800;
}

.product-modal-content > p {
    color: var(--muted);
    font-size: 13px;
}

.modal-quantity {
    width: fit-content;
    margin: 25px 0;
    display: flex;
    align-items: center;
    border: 1px solid var(--pink-light);
    border-radius: 999px;
    overflow: hidden;
}

.modal-quantity button {
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--fanta-dark);
    background: var(--pink-soft);
    cursor: pointer;
}

.modal-quantity span {
    width: 45px;
    text-align: center;
    font-weight: 700;
}

.modal-add-cart {
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* =========================================================
   CART DRAWER
   ========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    background: rgba(44,15,27,.35);
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    display: block;
}

.cart-drawer {
    width: min(430px, 94vw);
    position: fixed;
    top: 0;
    right: -460px;
    bottom: 0;
    z-index: 2600;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -25px 0 70px rgba(60,20,37,.18);
    transition: right .45s cubic-bezier(.2,.8,.2,1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    min-height: 105px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.cart-header .eyebrow {
    color: var(--fanta-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
}

.cart-header h3 {
    margin-top: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-empty {
    min-height: 400px;
    display: grid;
    place-content: center;
    text-align: center;
}

.cart-empty-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--fanta);
    background: var(--pink-soft);
    font-size: 25px;
}

.cart-empty h4 {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 500;
}

.cart-empty p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--line);
    background: #fffafb;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
    font-size: 13px;
}

.cart-total-row strong {
    color: var(--fanta-dark);
    font-size: 18px;
}

.checkout-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    justify-content: space-between;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 70px 5% 25px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,134,177,.2), transparent 35%),
        linear-gradient(135deg, #5d263d, #8f315b 55%, #c64276);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: .08em;
}

.footer-logo span {
    display: block;
    margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 8px;
    letter-spacing: .5em;
    margin-left: .5em;
    opacity: .75;
}

footer > p {
    margin-top: 12px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.footer-social {
    margin: 25px 0 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--fanta-dark);
    background: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6);
    font-size: 10px;
    letter-spacing: .05em;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #fff4f8;
}

::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: linear-gradient(#f6a1bd, #ef5f91);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fanta);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes shine {
    0% { left: -30%; }
    35%, 100% { left: 120%; }
}

@keyframes sparkle {
    0%, 100% { opacity: .35; transform: scale(.8) rotate(0); }
    50% { opacity: 1; transform: scale(1.25) rotate(25deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(.95); opacity: .65; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .navbar {
        grid-template-columns: auto 1fr auto;
    }

    .nav-left,
    .nav-right > a {
        display: none;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        justify-self: center;
    }

    .featured-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .best-seller-layout {
        grid-template-columns: 1fr;
    }

    .best-seller-side {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .best-seller-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .top-bar {
        justify-content: center;
        min-height: 34px;
        padding: 7px 12px;
        font-size: 8px;
        letter-spacing: .09em;
    }

    .top-right {
        display: none;
    }

    .navbar {
        min-height: 76px;
        padding: 10px 18px;
    }

    .logo-main {
        font-size: 25px;
    }

    .logo-sub {
        font-size: 6px;
    }

    .nav-right {
        gap: 4px;
    }

    .icon-btn {
        display: none;
    }

    .mobile-navigation {
        top: 115px;
    }

    .hero {
        min-height: 600px;
        padding: 80px 22px;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 68px);
    }

    .hero p {
        font-size: 13px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
    }

    .featured-products,
    .best-seller,
    .why-choose,
    .product-categories,
    .before-after,
    .testimonials {
        padding: 75px 18px;
    }

    .featured-grid,
    .why-grid,
    .testimonial-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .featured-heading,
    .best-seller-heading,
    .why-heading,
    .categories-heading,
    .ba-heading,
    .testimonial-heading {
        margin-bottom: 35px;
    }

    .featured-heading h2,
    .best-seller-heading h2,
    .why-heading h2,
    .categories-heading h2,
    .ba-heading h2,
    .testimonial-heading h2 {
        font-size: -8px;
    }

    .best-seller-main {
        min-height: 500px;
        padding: 30px 22px;
    }

    .best-seller-side {
        display: flex;
    }

    .best-seller-item {
        grid-template-columns: 90px 1fr;
        text-align: left;
    }

    .bs-item-visual {
        height: 95px;
    }

    .ba-card {
        grid-template-columns: 1fr;
    }

    .ba-divider {
        min-height: 65px;
    }

    .ba-divider::before {
        width: 70%;
        height: 1px;
    }

    .ba-image {
        min-height: 280px;
    }

    .product-modal {
        padding: 10px;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        min-height: 300px;
    }

    .product-modal-content {
        padding: 32px 25px;
    }

    .product-modal-content h2 {
        font-size: 32px;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
#drwMusicLabel {
    position: fixed;

    right: 15px;
    bottom: 88px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.95);

    color: #d72f89;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .3px;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(100,40,70,.15);

    border:
        1px solid #f3c4da;

    z-index: 999998;

    transition:
        .3s ease;

    animation:
        musicLabelFloat 2.5s ease-in-out infinite;
}


#drwMusicLabel::after {

    content: "";

    position: absolute;

    right: 18px;

    bottom: -6px;

    width: 11px;
    height: 11px;

    background: #fff;

    border-right:
        1px solid #f3c4da;

    border-bottom:
        1px solid #f3c4da;

    transform:
        rotate(45deg);
}


@keyframes musicLabelFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-4px);
    }

}


@media (max-width: 600px) {

    #drwMusicLabel {

        right: 12px;

        bottom: 78px;

        font-size: 11px;

        padding:
            7px 11px;
    }

}

/* =========================================================
   RARA DRW SKINCARE
   FLOATING WHATSAPP PREMIUM
   ========================================================= */

.rara-whatsapp {
    position: fixed !important;
    right: 22px !important;
    bottom: 125px !important;

    width: auto;
    min-height: 60px;

    display: flex !important;
    align-items: center;
    gap: 10px;

    padding: 7px 18px 7px 7px;

    background: linear-gradient(
        135deg,
        #25D366,
        #18B957
    );

    color: #fff !important;

    border-radius: 50px;

    text-decoration: none !important;

    z-index: 999999 !important;

    box-shadow:
        0 10px 30px rgba(37,211,102,.35),
        0 0 20px rgba(37,211,102,.20);

    transition: all .3s ease;

    animation: raraWhatsAppFloat 3s ease-in-out infinite;
}

.rara-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);

    color: #fff !important;

    box-shadow:
        0 15px 40px rgba(37,211,102,.50),
        0 0 30px rgba(37,211,102,.30);
}

.rara-wa-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    background: #fff;

    color: #25D366;

    border-radius: 50%;

    font-size: 28px;

    box-shadow:
        0 4px 15px rgba(0,0,0,.12);
}

.rara-wa-text {
    display: flex !important;
    flex-direction: column;

    text-align: left !important;

    line-height: 1.2;

    white-space: nowrap;
}

.rara-wa-text strong {
    color: #fff !important;

    font-size: 14px;

    font-weight: 800;
}

.rara-wa-text small {
    margin-top: 3px;

    color: rgba(255,255,255,.9) !important;

    font-size: 10px;
}

/* ANIMASI */

@keyframes raraWhatsAppFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

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

@media (max-width: 600px) {

    .rara-whatsapp {
        right: 15px !important;
        bottom: 111px !important;

        min-height: 50px;

        padding: 6px 13px 6px 6px;
    }

    .rara-wa-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;

        font-size: 25px;
    }

    .rara-wa-text strong {
        font-size: 12px;
    }

    .rara-wa-text small {
        font-size: 9px;
    }
}

/* HP SANGAT KECIL */

@media (max-width: 380px) {

    .rara-wa-text {
        display: none !important;
    }

    .rara-whatsapp {
        width: 57px;
        height: 57px;

        padding: 6px;

        justify-content: center;
    }

    .rara-wa-icon {
        width: 45px;
        height: 45px;
    }
}

/* ANIMATION */

@keyframes raraWhatsAppFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

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

@media (max-width: 600px) {

    .rara-whatsapp {
        right: 16px;
        bottom: 16px;

        padding: 1px 13px 1px 8px;

        gap: 8px;
    }

    .rara-wa-icon {
        width: 44px;
        height: 44px;

        font-size: 25px;
    }

    .rara-wa-text strong {
        font-size: 12px;
    }

    .rara-wa-text small {
        font-size: 10px;
    }
}

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

@media (max-width: 380px) {

    .rara-wa-text {
        display: none;
    }

    .rara-whatsapp {
        width: 56px;
        height: 56px;

        padding: 6px;

        justify-content: center;
    }

    .rara-wa-icon {
        width: 44px;
        height: 44px;
    }
}

/* =========================================================
   RARA DRW SKINCARE
   FLOATING SHOPEE PREMIUM
   ========================================================= */

.rara-shopee {
    position: fixed !important;

    right: 22px !important;
    bottom: 192px !important;

    z-index: 999999 !important;

    display: flex !important;
    align-items: center;
    gap: 10px;

    min-height: 60px;

    padding: 7px 18px 7px 7px;

    background: linear-gradient(
        135deg,
        #ee4d2d,
        #ff6b4a
    );

    color: #ffffff !important;

    text-decoration: none !important;

    border-radius: 50px;

    box-shadow:
        0 10px 30px rgba(238, 77, 45, .35),
        0 0 20px rgba(238, 77, 45, .20);

    transition: all .3s ease;

    animation: raraShopeeFloat 3s ease-in-out infinite;
}

/* HOVER */

.rara-shopee:hover {
    transform: translateY(-5px) scale(1.04);

    color: #ffffff !important;

    box-shadow:
        0 15px 40px rgba(238, 77, 45, .50),
        0 0 30px rgba(238, 77, 45, .30);
}

/* ICON */

.rara-shopee-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 48px;

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

    background: #ffffff;

    color: #ee4d2d;

    border-radius: 50%;

    font-size: 18px;

    box-shadow:
        0 4px 15px rgba(0,0,0,.12);
}

/* TEXT */

.rara-shopee-text {
    display: flex !important;
    flex-direction: column;

    text-align: left !important;

    line-height: 1.2;

    white-space: nowrap;
}

.rara-shopee-text strong {
    color: #ffffff !important;

    font-size: 14px;

    font-weight: 800;
}

.rara-shopee-text small {
    margin-top: 3px;

    color: rgba(255,255,255,.9) !important;

    font-size: 10px;
}

/* ANIMATION */

@keyframes raraShopeeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

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

@media (max-width: 600px) {

    .rara-shopee {
        right: 15px !important;
        bottom: 164px !important;

        min-height: 55px;

        padding: 6px 13px 6px 6px;
    }

    .rara-shopee-icon  {
        width: 43px;
        height: 43px;

        flex-basis: 43px;

        font-size: 22px;
    }

    .rara-shopee-text strong {
        font-size: 12px;
    }

    .rara-shopee-text small {
        font-size: 9px;
    }
}

/* HP KECIL */

@media (max-width: 380px) {

    .rara-shopee-text {
        display: none !important;
    }

    .rara-shopee {
        width: 57px;
        height: 57px;

        padding: 6px;

        justify-content: center;
    }

    .rara-shopee-icon {
        width: 45px;
        height: 45px;
    }
}
/* =====================================================
   RARA DRW SKINCARE — PREMIUM GLOW BACKGROUND
   Pink Fanta + White Glow + Soft Gold
   ===================================================== */

body {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 105, 180, 0.25) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 215, 150, 0.20) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(255, 20, 147, 0.16) 0%,
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #fff7fb 0%,
            #ffe8f4 35%,
            #fff 65%,
            #fff0f8 100%
        );

    background-attachment: fixed;
    overflow-x: hidden;
}


/* Lapisan cahaya bergerak */
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.85) 0%,
            rgba(255,182,220,0.20) 18%,
            transparent 45%
        );

    animation: premiumGlow 12s ease-in-out infinite alternate;
}


/* Kilauan kedua */
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    top: 5%;
    right: -180px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,20,147,0.18) 0%,
            rgba(255,105,180,0.10) 35%,
            transparent 70%
        );

    filter: blur(20px);

    animation: floatingGlow 9s ease-in-out infinite;
}


/* Animasi cahaya utama */
@keyframes premiumGlow {

    0% {
        transform: translate(-8%, -5%) scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: translate(5%, 5%) scale(1.05);
        opacity: 0.90;
    }

    100% {
        transform: translate(-3%, 10%) scale(1.10);
        opacity: 0.70;
    }
}


/* Animasi glow melayang */
@keyframes floatingGlow {

    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
    }

    50% {
        transform: translate(-100px, 80px) scale(1.2);
        opacity: 0.85;
    }

    100% {
        transform: translate(30px, 140px) scale(0.95);
        opacity: 0.55;
    }
}
/* =====================================================
   RARA DRW SKINCARE — PREMIUM GLOW BACKGROUND
   Pink Fanta + White Glow + Soft Gold
   ===================================================== */

body {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 105, 180, 0.25) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 215, 150, 0.20) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(255, 20, 147, 0.16) 0%,
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #fff7fb 0%,
            #ffe8f4 35%,
            #fff 65%,
            #fff0f8 100%
        );

    background-attachment: fixed;
    overflow-x: hidden;
}


/* Lapisan cahaya bergerak */
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.85) 0%,
            rgba(255,182,220,0.20) 18%,
            transparent 45%
        );

    animation: premiumGlow 12s ease-in-out infinite alternate;
}


/* Kilauan kedua */
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    top: 5%;
    right: -180px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,20,147,0.18) 0%,
            rgba(255,105,180,0.10) 35%,
            transparent 70%
        );

    filter: blur(20px);

    animation: floatingGlow 9s ease-in-out infinite;
}


/* Animasi cahaya utama */
@keyframes premiumGlow {

    0% {
        transform: translate(-8%, -5%) scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: translate(5%, 5%) scale(1.05);
        opacity: 0.90;
    }

    100% {
        transform: translate(-3%, 10%) scale(1.10);
        opacity: 0.70;
    }
}


/* Animasi glow melayang */
@keyframes floatingGlow {

    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
    }

    50% {
        transform: translate(-100px, 80px) scale(1.2);
        opacity: 0.85;
    }

    100% {
        transform: translate(30px, 140px) scale(0.95);
        opacity: 0.55;
    }
}

/* =========================================================
   RARA DRW SKINCARE
   PREMIUM GLOW BACKGROUND — FINAL
   Pink Fanta + Soft Gold + White Light + Shimmer
   ========================================================= */

/* =========================
   BODY BACKGROUND
   ========================= */

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(255, 105, 180, 0.24) 0%,
            rgba(255, 105, 180, 0.08) 18%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 215, 160, 0.22) 0%,
            rgba(255, 215, 160, 0.08) 20%,
            transparent 42%
        ),
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 220, 240, 0.35) 25%,
            transparent 55%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(255, 20, 147, 0.13) 0%,
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 200, 230, 0.20) 0%,
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #fffafd 0%,
            #fff1f8 25%,
            #ffffff 50%,
            #fff0f7 75%,
            #fffafd 100%
        );

    background-attachment: fixed;
    background-size: 140% 140%;

    overflow-x: hidden;
}


/* =========================================================
   MAIN MOVING LIGHT
   ========================================================= */

body::before {
    content: "";

    position: fixed;
    width: 900px;
    height: 900px;

    top: -350px;
    left: -250px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.90) 0%,
            rgba(255, 182, 220, 0.35) 18%,
            rgba(255, 105, 180, 0.12) 35%,
            transparent 68%
        );

    filter: blur(10px);

    z-index: -1;

    animation:
        raraMainLight
        15s
        ease-in-out
        infinite
        alternate;
}


/* =========================================================
   SECOND LIGHT
   ========================================================= */

body::after {
    content: "";

    position: fixed;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 25%;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(255, 215, 160, 0.30) 0%,
            rgba(255, 105, 180, 0.20) 25%,
            rgba(255, 20, 147, 0.08) 42%,
            transparent 70%
        );

    filter: blur(20px);

    z-index: -1;

    animation:
        raraGoldLight
        18s
        ease-in-out
        infinite
        alternate;
}


/* =========================================================
   MAIN LIGHT ANIMATION
   ========================================================= */

@keyframes raraMainLight {

    0% {
        transform:
            translate3d(0, 0, 0)
            scale(0.85);

        opacity: 0.45;
    }

    25% {
        transform:
            translate3d(180px, 80px, 0)
            scale(1);

        opacity: 0.70;
    }

    50% {
        transform:
            translate3d(350px, 180px, 0)
            scale(1.15);

        opacity: 0.90;
    }

    75% {
        transform:
            translate3d(180px, 300px, 0)
            scale(1.05);

        opacity: 0.65;
    }

    100% {
        transform:
            translate3d(-50px, 450px, 0)
            scale(0.90);

        opacity: 0.45;
    }
}


/* =========================================================
   GOLD LIGHT ANIMATION
   ========================================================= */

@keyframes raraGoldLight {

    0% {
        transform:
            translate3d(0, 0, 0)
            scale(0.80);

        opacity: 0.35;
    }

    30% {
        transform:
            translate3d(-100px, -80px, 0)
            scale(1);

        opacity: 0.60;
    }

    60% {
        transform:
            translate3d(-250px, 100px, 0)
            scale(1.20);

        opacity: 0.80;
    }

    100% {
        transform:
            translate3d(-100px, 250px, 0)
            scale(0.90);

        opacity: 0.40;
    }
}


/* =========================================================
   PREMIUM SHIMMER LAYER
   ========================================================= */

.rara-shimmer {
    position: fixed;

    top: 0;
    left: -150%;

    width: 80%;
    height: 100%;

    pointer-events: none;

    z-index: 1;

    transform:
        skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.03) 30%,
            rgba(255,255,255,0.38) 50%,
            rgba(255,255,255,0.03) 70%,
            transparent 100%
        );

    filter: blur(8px);

    animation:
        raraShimmer
        10s
        ease-in-out
        infinite;
}


@keyframes raraShimmer {

    0% {
        left: -150%;
        opacity: 0;
    }

    15% {
        opacity: 0.5;
    }

    45% {
        opacity: 0.8;
    }

    65% {
        opacity: 0;
    }

    100% {
        left: 160%;
        opacity: 0;
    }
}


/* =========================================================
   SPARKLE / DIAMOND LIGHT
   ========================================================= */

.rara-sparkle {
    position: fixed;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ffffff;

    pointer-events: none;

    z-index: 5;

    box-shadow:
        0 0 4px #ffffff,
        0 0 10px #ffb6dc,
        0 0 18px #ff69b4,
        0 0 30px rgba(255,20,147,0.65);

    animation:
        raraSparkle
        4s
        ease-in-out
        infinite;
}


/* Cross sparkle */

.rara-sparkle::before,
.rara-sparkle::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,0.95),
            transparent
        );
}


.rara-sparkle::before {
    width: 28px;
    height: 1px;
}


.rara-sparkle::after {
    width: 1px;
    height: 28px;
}


@keyframes raraSparkle {

    0% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
    }

    20% {
        opacity: 0.2;
    }

    45% {
        opacity: 1;
        transform: scale(1.5) rotate(45deg);
    }

    65% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: scale(0.2) rotate(90deg);
    }
}


/* =========================================================
   GLASS / GLOW CARD
   Bisa digunakan pada product-card, beauty tips,
   trust bar, category, dll.
   ========================================================= */

.rara-glass {
    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.78),
            rgba(255,235,246,0.48)
        );

    border: 1px solid rgba(255,255,255,0.80);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(255,20,147,0.08),
        0 0 30px rgba(255,255,255,0.45);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.rara-glass:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(255,105,180,0.45);

    box-shadow:
        0 18px 55px rgba(255,20,147,0.16),
        0 0 35px rgba(255,105,180,0.20),
        inset 0 0 30px rgba(255,255,255,0.40);
}


/* =========================================================
   PINK FANTA GLOW TEXT
   ========================================================= */

.rara-glow-text {
    color: #ff1493;

    text-shadow:
        0 0 5px rgba(255,20,147,0.20),
        0 0 12px rgba(255,105,180,0.25),
        0 0 25px rgba(255,105,180,0.20);
}


/* =========================================================
   GOLD GLOW
   ========================================================= */

.rara-gold-glow {
    color: #c99545;

    text-shadow:
        0 0 5px rgba(255,215,160,0.30),
        0 0 12px rgba(255,200,120,0.25),
        0 0 25px rgba(255,215,160,0.25);
}


/* =========================================================
   PREMIUM BUTTON
   ========================================================= */

.rara-glow-button {
    position: relative;

    border: none;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff69b4,
            #ff1493,
            #d90078
        );

    box-shadow:
        0 8px 25px rgba(255,20,147,0.25),
        0 0 25px rgba(255,105,180,0.20);

    overflow: hidden;

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


.rara-glow-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    transform: skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.65),
            transparent
        );

    animation:
        raraButtonShine
        4s
        ease-in-out
        infinite;
}


.rara-glow-button:hover {
    transform:
        translateY(-3px)
        scale(1.02);

    box-shadow:
        0 12px 35px rgba(255,20,147,0.35),
        0 0 35px rgba(255,105,180,0.35);
}


@keyframes raraButtonShine {

    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 150%;
    }
}


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

@media (max-width: 768px) {

    body {
        background-attachment: scroll;
        background-size: 180% 180%;
    }

    body::before {
        width: 600px;
        height: 600px;

        top: -220px;
        left: -220px;
    }

    body::after {
        width: 450px;
        height: 450px;

        right: -220px;
    }

    .rara-shimmer {
        animation-duration: 14s;
    }

    .rara-sparkle {
        width: 3px;
        height: 3px;
    }
}


/* =========================================================
   REDUCE MOTION
   Untuk pengguna yang mengaktifkan reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    body::before,
    body::after,
    .rara-shimmer,
    .rara-sparkle,
    .rara-glow-button::before {
        animation: none !important;
    }
}
/* =========================================================
   DRW SKINCARE - PREMIUM WELCOME VOICE
========================================================= */

.drw-welcome-voice {
    position: fixed;
    top: 100px;
    right: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 3px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.75),
            rgba(255, 210, 235, 0.55),
            rgba(255, 255, 255, 0.65)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 105, 180, 0.35);

    border-radius: 50px;

    box-shadow:
        0 10px 35px rgba(255, 20, 147, 0.18),
        0 0 25px rgba(255, 215, 150, 0.25),
        inset 0 0 15px rgba(255, 255, 255, 0.8);

    z-index: 9999;

    animation:
        drwVoiceFloat 3s ease-in-out infinite,
        drwVoiceAppear 1s ease forwards;

    transition: all 0.6s ease;
}


/* ICON */

.drw-voice-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

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

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff5fa2,
            #ff1493,
            #ff7eb9
        );

    box-shadow:
        0 0 15px rgba(255, 20, 147, 0.6),
        0 0 30px rgba(255, 182, 193, 0.4);

    font-size: 18px;

    position: relative;

    z-index: 2;
}


/* TEXT */

.drw-voice-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.drw-voice-text span {
    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d48a00;
}


.drw-voice-text strong {
    font-family: "Playfair Display", serif;

    font-size: 12px;

    font-weight: 600;

    color: #8b1e55;
}


/* GLOW */

.drw-voice-glow {
    position: absolute;

    width: 120px;
    height: 120px;

    background:
        radial-gradient(
            circle,
            rgba(255, 105, 180, 0.35),
            transparent 70%
        );

    filter: blur(15px);

    opacity: 0.6;

    animation: drwGlowPulse 2s infinite;

    pointer-events: none;
}


/* SAAT SUARA BERBICARA */

.drw-speaking .drw-voice-icon {
    animation: drwSpeaking 0.8s infinite alternate;
}


.drw-speaking .drw-welcome-voice {
    border-color: rgba(255, 20, 147, 0.8);

    box-shadow:
        0 0 20px rgba(255, 20, 147, 0.4),
        0 0 50px rgba(255, 182, 193, 0.5),
        0 0 70px rgba(255, 215, 150, 0.3);
}


/* HILANG SETELAH SELESAI */

.drw-welcome-voice.hide {
    opacity: 0;

    transform:
        translateX(80px)
        scale(0.9);

    pointer-events: none;
}


/* ANIMATION */

@keyframes drwVoiceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


@keyframes drwVoiceAppear {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes drwGlowPulse {

    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

}


@keyframes drwSpeaking {

    from {
        transform: scale(1);
        box-shadow:
            0 0 10px rgba(255, 20, 147, 0.5);
    }

    to {
        transform: scale(1.15);
        box-shadow:
            0 0 25px rgba(255, 20, 147, 0.9),
            0 0 45px rgba(255, 182, 193, 0.6);
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .drw-welcome-voice {
        top: auto;
        bottom: 745px;
        right: 15px;
        left: 15px;

        justify-content: center;

        padding: 12px 16px;
    }

    .drw-voice-text strong {
        font-size: 11px;
    }

}
/* =========================================================
   DRW SKINCARE - CATEGORY SECTION
   Luxury Pink Gold Style
   ========================================================= */

.category-grid {
    position: relative;

    /* BACKGROUND */
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 245, 248, 0.30),
            rgba(255, 255, 255, 0.18)
        ),
        url("assets/images/products/Background 4.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* LAYOUT */
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;

    padding: 35px 25px;

    /* BORDER */
    border: 1px solid rgba(210, 145, 165, 0.18);
    border-radius: 25px;

    /* SHADOW */
    box-shadow:
        0 20px 60px rgba(130, 60, 90, 0.10),
        inset 0 0 50px rgba(255, 255, 255, 0.45);

    overflow: hidden;
}


/* =========================================================
   EFEK GLOW DI ATAS BACKGROUND
   ========================================================= */

.category-grid::before {
    content: "";
    position: absolute;

    top: -100px;
    left: -100px;

    width: 350px;
    height: 350px;

    background: radial-gradient(
        circle,
        rgba(255, 190, 215, 0.35),
        transparent 70%
    );

    filter: blur(20px);

    pointer-events: none;
}


.category-grid::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -150px;

    width: 400px;
    height: 400px;

    background: radial-gradient(
        circle,
        rgba(215, 170, 100, 0.20),
        transparent 70%
    );

    filter: blur(30px);

    pointer-events: none;
}


/* =========================================================
   CATEGORY ITEM
   ========================================================= */

.category-item {
    position: relative;
    z-index: 2;

    min-height: 135px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 15px 8px;

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.70);

    border-radius: 20px;

    color: #6d2948;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(120, 50, 80, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================================
   HOVER CATEGORY
   ========================================================= */

.category-item:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.82);

    border-color: rgba(211, 145, 165, 0.45);

    box-shadow:
        0 18px 40px rgba(150, 60, 100, 0.16),
        0 0 25px rgba(235, 155, 190, 0.15);
}


/* =========================================================
   CATEGORY ICON
   ========================================================= */

.category-item i {
    width: 58px;
    height: 58px;

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

    margin-bottom: 10px;

    font-size: 23px;

    color: #d62f79;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff1f6
        );

    border: 1px solid rgba(214, 47, 121, 0.18);

    border-radius: 50%;

    box-shadow:
        0 6px 18px rgba(214, 47, 121, 0.10);

    transition: all 0.35s ease;
}


.category-item:hover i {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d62f79,
            #ed73a5
        );

    transform: scale(1.08) rotate(3deg);

    box-shadow:
        0 8px 25px rgba(214, 47, 121, 0.28);
}


/* =========================================================
   CATEGORY TITLE
   ========================================================= */

.category-item span,
.category-item h3,
.category-item .category-name {
    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.2px;

    color: #52243a;

    transition: color 0.3s ease;
}


.category-item:hover span,
.category-item:hover h3,
.category-item:hover .category-name {
    color: #d62f79;
}


/* =========================================================
   CATEGORY SUBTITLE
   ========================================================= */

.category-item small {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: #9a7887;

    letter-spacing: 0.3px;
}


/* =========================================================
   GOLD DECORATION
   ========================================================= */

.category-item::before {
    content: "";

    position: absolute;

    top: 10px;
    right: 12px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d6a85c;

    box-shadow:
        0 0 8px rgba(214, 168, 92, 0.6);

    opacity: 0.6;
}


/* =========================================================
   RESPONSIVE - LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);

        padding: 25px 20px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 768px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);

        gap: 8px;

        padding: 20px 12px;

        border-radius: 18px;
    }

    .category-item {
        min-height: 110px;

        padding: 10px 5px;

        border-radius: 15px;
    }

    .category-item i {
        width: 45px;
        height: 45px;

        font-size: 18px;

        margin-bottom: 7px;
    }

    .category-item span,
    .category-item h3,
    .category-item .category-name {
        font-size: 11px;
    }

}


/* =========================================================
   RESPONSIVE - HP
   ========================================================= */

@media (max-width: 480px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        padding: 15px;
    }

    .category-item {
        min-height: 105px;
    }

}


/* =========================================================
   ANIMASI HALUS
   ========================================================= */

@keyframes categoryGlow {

    0% {
        box-shadow:
            0 8px 25px rgba(120, 50, 80, 0.08);
    }

    50% {
        box-shadow:
            0 12px 30px rgba(214, 47, 121, 0.13);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(120, 50, 80, 0.08);
    }

}


.category-item {
    animation: categoryGlow 4s ease-in-out infinite;
}
