

:root {
    /* Primary Blue Palette */
    --ocean-dark: #0a1e2e;
    --ocean-deep: #0d2d4d;
    --blue-primary: #1a3a5c;
    --blue-medium: #2d4a7a;
    --blue-light: #4a6f9d;
    --sky-fresh: #60a5fa;
    --sky-light: #93c5fd;
    
    /* Supporting Colors */
    --white-pure: #ffffff;
    --white-soft: #f0f9ff;
    --gray-dark: #1a1f2e;
    --gray-medium: #3d4a5a;
    
    /* Gradients */
    --gradient-ocean: linear-gradient(180deg, #0a1e2e 0%, #1a3a5c 100%);
    --gradient-blue: linear-gradient(135deg, #0d2d4d 0%, #2d4a7a 100%);
    --gradient-sky: linear-gradient(135deg, #4a6f9d 0%, #60a5fa 100%);
    
    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(10, 30, 46, 0.5);
    --shadow-medium: 0 4px 12px rgba(10, 30, 46, 0.6);
    --shadow-blue-glow: 0 4px 20px rgba(96, 165, 250, 0.25);
}

/* === POPUP STYLES === */
.popup-container {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: rgba(10, 30, 46, 0.92);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popup-body {
    width: 359px;
    height: 589px;
    margin: 2% auto;
    background: var(--ocean-deep);
    border-radius: 10px;
    border: 2px solid var(--blue-medium);
    color: white;
    box-shadow: var(--shadow-medium);
}

@media (max-width: 512px) {
    .popup-body {
        width: 310px;
        margin: 10% auto;
    }
}

.popup-img {
    width: 450px;
    height: 555px;
    margin: 8% auto;
}

.popup-img-close {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: var(--sky-fresh);
    color: var(--ocean-dark);
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-left: -7px;
    margin-top: -20px;
    border: 2px solid var(--blue-light);
    font-weight: bold;
    transition: all 0.3s ease;
}

.popup-img-close:hover {
    background: var(--blue-light);
    transform: scale(1.1);
}

@media (min-width: 993px) {
    .popup-img-close {
        margin-left: 42px;
        margin-top: -12px;
    }
}

.popup-header {
    height: 48px;
    width: 100%;
    background: var(--gradient-blue);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    float: left;
}

.popup-header h6 {
    margin: 13px;
    color: var(--sky-light);
    font-weight: 600;
}

.popup-content {
    width: 100%;
    height: auto;
    padding: 7px 39px;
    float: left;
    font-size: 14px;
    color: var(--white-soft);
}

.col2 {
    width: 50%;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.mrtop10 {
    margin-top: 10px;
}

.hr {
    width: 100%;
    height: 2px;
    background: var(--blue-medium);
    float: left;
}

.popup-label {
    width: 100%;
    float: left;
    background: var(--ocean-dark);
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid var(--blue-primary);
}

.popup-close {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: var(--sky-fresh);
    color: var(--ocean-dark);
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-top: -10px;
    z-index: 100;
    margin-left: -9px;
    border: 2px solid var(--blue-light);
    font-weight: bold;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--blue-light);
    transform: scale(1.1);
}

.bg-blue-button {
    background: var(--gradient-blue);
}

.bg-black-button {
    background: var(--gray-medium);
}

.popip-button {
    cursor: pointer;
    width: 50%;
    float: left;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popip-button:hover {
    background: var(--sky-fresh);
    color: var(--ocean-dark);
}

/* === SLIDESHOW CONTAINER === */
.slideshow-images-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-bottom: 6px;
}

.slideshow-images {
    display: none;
}

.prev-slideshow-images,
.next-slideshow-images {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -14px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(13, 45, 77, 0.5);
}

.next-slideshow-images {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-slideshow-images:hover,
.next-slideshow-images:hover {
    background-color: rgba(45, 74, 122, 0.9);
}

.text-slideshow-images {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext-slideshow-images {
    color: var(--sky-light);
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
}

.dot-slideshow-images {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--gray-medium);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-slideshow-images,
.dot-slideshow-images:hover {
    background-color: var(--blue-light);
}

.fade-slideshow-images {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 993px) {
    .numbertext-slideshow-images {
        top: 0;
    }
}

@media (max-width: 425px) {
    .popup-img {
        max-width: 93%;
        margin: 25% auto;
    }
}

/* === HEADER === */
.header {
    width: 100%;
    height: 64px;
    margin-bottom: 6px;
    background: var(--gradient-sky);
    position: fixed;
    z-index: 300;
    box-shadow: var(--shadow-soft);
}

.images-logo {
    padding: 3px;
    width: 122px;
    height: 43px;
    float: left;
    margin-top: 9px;
}

.header .title {
    float: right;
    width: auto;
    height: auto;
    margin: 15px;
    border-radius: 42px;
}

.red {
    background: var(--ocean-deep);
}

.blue {
    background: var(--blue-primary);
}

.header-buttom {
    color: white;
    padding: 5px;
    height: 42px;
}

.header-button-text {
    font-size: 14px;
    margin: 7px;
    float: left;
}

.popup-container-ads {
    background: url(assets/popup.html);
    background-repeat: no-repeat;
    margin: 10% auto;
    border-radius: 18px;
    background-size: 100%;
}

@media (max-width: 992px) {
    .header .title {
        display: none;
    }

    .col {
        flex-basis: auto;
    }

    .header-button-text {
        font-size: 12px;
        margin: 9px;
    }
}

/* === MENU NAVIGATION BOTTOM === */
.menu-bottom {
    display: none;
    height: 73px;
    width: 100vw;
    position: fixed;
    bottom: 0;
    border-top: 2px solid var(--blue-light);
    background: var(--gradient-blue);
    box-shadow: 0 -4px 16px rgba(10, 30, 46, 0.6);
}

.sub-menu-bottom {
    width: 25vw;
    height: 100%;
    float: left;
    transition: all 0.3s ease;
}

.sub-menu-bottom:hover {
    background: var(--blue-light);
}

.icon-menu {
    width: 27px;
    height: 27px;
    margin: 8px;
}

.text-menu {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    color: white;
}

@media (max-width: 992px) {
    .menu-bottom {
        display: block;
    }
}

@media (min-width: 768px) {
    .menu-bottom {
        height: 82px;
    }
}

/* === NAVBAR SEARCH === */
.navbar-search {
    height: 50px;
    width: 100%;
    background: var(--ocean-deep);
}

.search-button {
    background: var(--sky-fresh);
    border: 0px;
    color: var(--ocean-dark);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--blue-light);
}

.input-search {
    background: var(--white-soft);
    border: 0px;
    color: var(--ocean-dark);
}

.search-besar {
    display: block;
}

.search-kecil {
    display: none;
    height: auto;
}

#running_text_header {
    display: flex;
}

.btn-title {
    bottom: 85px;
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
}

#header-besar {
    display: block;
}

#header-kecil {
    display: none;
}

p {
    margin: 0px;
}

/* === POPUP FILTER === */
#popup-container-filter {
    overflow-y: scroll;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 12220000;
    background: rgba(10, 30, 46, 0.95);
    top: 0;
}

.title-filter {
    color: var(--sky-light);
    text-align: center;
}

.container-demo {
    width: 650px;
    background: var(--ocean-dark);
    margin: 4% auto;
    height: auto;
    border: 2px solid var(--blue-medium);
    border-radius: 10px;
}

.iframe-demo {
    border: 0px;
    width: 650px;
    height: 451px;
}

.header-demo {
    background: var(--ocean-deep);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.btn-fullscreen {
    margin: 6px;
    position: initial;
    width: auto;
    font-size: 12px;
    height: auto;
    border-radius: 10px;
    background: var(--sky-fresh);
    color: var(--ocean-dark);
    border: none;
    padding: 5px 15px;
    font-weight: 600;
}

.footer-demo {
    display: block;
}

.btn-popup-demoplay {
    height: auto;
    font-size: 14px;
    padding: 0px 20px;
    margin-bottom: 6px;
}

.popup-body-ads-yt {
    width: 606px;
    height: 390px;
    margin: 8% auto;
    padding: 20px;
    background: var(--ocean-deep);
    border-radius: 20px;
    border: 2px solid var(--blue-medium);
}

@media (max-width: 992px) {
    .slot .slot-sidebar {
        float: left;
        width: 100%;
        flex: 0 0 20%;
        max-width: 100%;
        margin-top: 5px;
        background-color: var(--ocean-dark);
    }

    .search-besar {
        display: none;
    }

    .search-kecil {
        display: block;
    }

    .images-logo {
        width: 107px;
        height: 42px;
        float: left;
        margin-top: 7px;
    }

    #running_text_header {
        display: none;
    }

    .hover-btn {
        opacity: 1;
    }

    .btn-title {
        bottom: 30px;
        position: absolute;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 12px;
    }

    .play-btn {
        display: none;
        font-size: 12px;
        text-decoration: none;
        color: white;
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 3px;
        background: var(--gradient-sky);
        bottom: 22px;
        position: absolute;
    }

    .demo-btn {
        background: var(--sky-fresh);
        bottom: 45px;
        height: auto;
        color: var(--ocean-dark);
    }

    #header-besar {
        display: none;
    }

    #header-kecil {
        display: block;
    }

    .container-demo {
        width: 95%;
        background: var(--ocean-dark);
        margin: 1% auto;
        height: auto;
    }

    .iframe-demo {
        border: 0px;
        width: 95vw;
        height: 82vh;
    }

    .footer-demo {
        display: none;
    }

    .popup-body-ads-yt {
        width: 100%;
        height: 40%;
        margin: 20% auto;
    }
}

/* === SLIDESHOW TEXT === */
.slideshow-containerText {
    position: relative;
}

.mySlidesText {
    display: none;
    padding: 11px 34px;
    text-align: center;
}

.prevText,
.nextText {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: var(--ocean-dark);
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.nextText {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prevText:hover,
.nextText:hover {
    background-color: var(--blue-medium);
    color: white;
}

.activeText {
    background-color: var(--blue-light);
}

.sliderTextTitle {
    color: var(--ocean-dark);
}

/* === SCROLLBAR === */
@media (max-width: 600px) {
    ::-webkit-scrollbar {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ocean-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-light);
}

/* === FILTER & PROVIDER === */
.logo-filter-kecil {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.btn-provider {
    background: var(--blue-primary);
    border: 1px solid var(--blue-medium);
    transition: all 0.3s ease;
}

.btn-provider:active,
.btn-provider:focus {
    background: var(--blue-light);
}

.container-tmp {
    padding-top: 79px;
}

.logo-profider-kecil {
    background-size: 15px;
    background-color: var(--sky-fresh);
    height: 25px;
    display: block;
    background-repeat: no-repeat;
    width: 25px;
    float: right;
    background-position: center;
}

.bg-black {
    width: 24%;
    background: var(--ocean-deep);
    margin: 3px;
    border: 1px solid var(--blue-primary);
}

@media (max-width: 992px) {
    .bg-black {
        width: 31.5%;
    }
}

.bg-transparan {
    background: transparent;
}

.text-wrap {
    font-size: 14px;
    word-break: break-all;
    white-space: normal;
    text-transform: capitalize;
}

/* === RATING COLORS === */
.colors span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
}

.colors span .red {
    background-color: #d32f2f;
}

.colors span .green {
    background-color: var(--sky-fresh);
}

.colors span .yellow {
    background-color: #ffd700;
    color: black;
}

.ratings i {
    color: #ffd700;
}

/* === CUSTOM BUTTONS === */
.btn-pola-main-custom {
    width: 100%;
    height: 30px;
    padding: 2px;
    background: var(--gradient-sky);
    border: 0px;
    font-size: 14px;
    color: var(--ocean-dark);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-pola-main-custom:hover {
    background: var(--blue-light);
}

/* === IMAGE CONTAINERS === */
.img-100 {
    width: 100%;
}

.img-50 {
    width: 50%;
}

.image-container {
    position: relative;
}

.thumbnail-image {
    border-radius: 10px;
}

.discount {
    background-color: var(--ocean-deep);
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 10px;
    border-radius: 6px;
    color: #fff;
}

.wishlist {
    height: 25px;
    width: 25px;
    background-color: var(--ocean-dark);
    border: 2px solid var(--blue-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(10, 30, 46, 0.5), 0 6px 20px 0 rgba(10, 30, 46, 0.4);
}

.first {
    position: absolute;
    width: 100%;
    padding: 4px;
}

.dress-name {
    font-size: 13px;
    font-weight: bold;
    width: 75%;
    margin-bottom: 0px;
    text-align: left;
}

.rating-star {
    font-size: 10px;
}

.rating-number {
    font-size: 10px;
    color: var(--sky-light);
}

.buy {
    font-size: 12px;
    font-weight: 500;
}

/* === VOUCHERS === */
.voutchers {
    border: none;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    background: var(--gradient-sky);
}

.voutcher-divider {
    display: flex;
}

.voutcher-left {
    width: 65%;
    padding-top: 2px;
}

.voutcher-name {
    color: var(--ocean-dark);
    font-size: 9px;
    font-weight: 500;
}

.voutcher-code {
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.voutcher-right {
    width: 35%;
    color: #fff;
    background: var(--blue-medium);
}

.discount-percent {
    font-size: 10px;
    font-weight: bold;
    position: relative;
    top: 9px;
}

.off {
    font-size: 10px;
    position: relative;
    bottom: 5px;
}

.border-top {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

/* === SEMI CONTAINER === */
.semi-container {
    width: 100%;
    height: auto;
}

.container-semi-text {
    padding: 5px;
    color: white;
    font-size: 12px;
}

.cs-height {
    height: 130px;
}

@media (max-width: 992px) {
    .cs-height {
        max-height: 95px;
    }
}