/* === Font === */
@import url('https://fonts.cdnfonts.com/css/impact');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* === Root === */
:root {
    --main-back-color: #0A0A0A;
    --ambient-color: #FFFFFF;

    --color-D9D9-white-gray: #D9D9D9;
    --color-2222-semiblack-gray: #222222;
    --color-5A5A-gray: #5A5A5A;
    --color-EDED-deeplayer-semiwhite: #EDEDED;
    --color-yellow-indicator: #E49D1F;
    --color-F3F0E8-white-krem: #F3F0E8;

    --thin: 100;
    --extra-light: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    --black: 900;
    --extra-black: 1000;
}

/* All */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Poppins';
    color: white;

    scrollbar-width: bold;
    scrollbar-color: #d6d6d6 transparent;

    transition: all 0.4s ease;
}

/* Selection - Custom */
::selection{
    background: var(--color-yellow-indicator);
    color: var(--ambient-color);
}

/* Scrollbar - Custom */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffffff, #bdbdbd);
    border-radius: 12px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 6px rgba(255,255,255,0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f5f5f5, #d6d6d6);
    box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #cccccc, #a8a8a8);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.4);
}

/* set default */
p {
    font-size: 20px;
    font-weight: var(--light);
}

.sub-title {
    font-size: 20px;
    letter-spacing: 2px;
}
.title-sect {
    font-size: 56px;
    font-weight: var(--black);
    text-transform: uppercase;
}
.title-sect span {
    font-weight: var(--light);
    font-size: 56px;
    letter-spacing: 3px;
}

@media (max-width: 1000px) {
    p {
        font-size: 16px;
        font-weight: var(--light);
    }

    .sub-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .title-sect {
        font-size: 46px;
        font-weight: var(--black);
        text-transform: uppercase;
    }
    .title-sect span {
        font-weight: var(--light);
        font-size: 46px;
        letter-spacing: 3px;
    }
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.4; }
}

.section-glow1 {
    top: 0%;
    left: -50%;
    transform: translateY(-50%);
}

.section-glow2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
    clip-path: inset(0 50% 0 0);
    display: none;
}

.section-glow3 {
    top: 200%;
    left: -50%;
    opacity: 0.7;
    transform: translateY(-50%);
}

.section-glow4 {
    top: 450%;
    right: 0;
    opacity: 0.7;
    transform: translateY(-50%) translateX(50%);
    clip-path: inset(0 50% 0 0);
    display: none;
}

.section-glow5 {
    top: 500%;
    left: -50%;
    opacity: 0.7;
    transform: translateY(-50%);
}

.section-glow6 {
    top: 700%;
    right: 0;
    opacity: 0.6;
    transform: translateY(-50%) translateX(50%);
    clip-path: inset(0 50% 0 0);
    display: none;
}

.section-glow7 {
    top: 950%;
    left: -50%;
    opacity: 0.6;
    transform: translateY(-50%);
}

/* === Navbar Style === */
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    justify-content: center;
    transition: all 1 ease;
}

.parent-nav {
    width: 100%;
    background: transparent;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
}

.content-nav {
    width: 92%;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    color: white;
}

/* left side */
.content-nav span:first-child {
    display: flex;
    align-items: center;
    gap: 80px;
}

.content-nav span h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

/* menu */
.content-nav span ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.content-nav span ul li a {
    font-size: 18px;
    font-weight: var(--regular);
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.content-nav span ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: currentColor;
    transition: width 0.3s ease;
}

.content-nav span ul li a:hover::after {
    width: 100%;
}

.content-nav span ul li a.active::after {
    width: 100%;
}

.content-nav span ul li a.active {
    font-weight: var(--extra-bold);
}

/* right side */
.content-nav span:last-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-nav span > a {
    display: flex;
    align-items: center;
    padding: 12px 35px;
    background: white;
    border-radius: 50px;
}

.content-nav span > a i {
    font-size: 20px;
    color: black;
    transition: all 0.2s ease;
}

.content-nav span > a:hover {
    scale: 1.05;
    opacity: 0.8;
}

/* event navbar scrolled */
.parent-nav.scrolled {
    background: white;
    width: 92%;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.parent-nav.scrolled .content-nav {
    width: 100%;
    padding: 20px 52px;
}

.parent-nav.scrolled .content-nav ul li a,
.parent-nav.scrolled .content-nav h1,
.parent-nav.scrolled .dropdown-selected,
.parent-nav.scrolled .dropdown-selected i {
    color: black;
}

.parent-nav.scrolled .content-nav span > a {
    background: black;
}

.parent-nav.scrolled .content-nav span > a i {
    color: white;
}

/* hide show nav with button */
nav.hide {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

nav.show {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.nav-toggle-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -5px);
    z-index: 9998;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    border-radius: 5px;
    border: none;
    background: white;
    color: black;
    font-size: 16px;
    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.nav-toggle-btn i {
    color: black;
    transition: transform 0.2s ease;
}

.nav-toggle-btn.show {
    opacity: 0.75;
    transform: translate(-50%, 0);
    pointer-events: auto;
    animation: floatBtnToggleNav 2.5s ease-in-out infinite;
}

.nav-toggle-btn:hover {
    opacity: 1;
}

.nav-toggle-btn:active {
    transform: translate(-50%, 0);
    opacity: 0.1;
}

@keyframes floatBtnToggleNav {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -6px);
    }
}

/* responsive */
.burger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.burger-menu.active i {
    transform: rotate(90deg);
}

@media (max-width: 1200px) {
    .content-nav span ul {
        gap: 5px;
    }

    .nav-links {
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;

        flex-direction: column;
        gap: 10px;
        background: white;
        border-radius: 10px;
        margin: 0 4vw;
        padding: 20px 15px;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all .7s ease;
        z-index: 1000;
        transform: translateX(1000px);
    }

    .nav-links.show {
        max-height: max-content;
        opacity: 1;
        transform: translateX(0);
    }

    nav.hide .nav-links,
    nav.hide .nav-links.show {
        transform: translateX(1000px) !important;
        opacity: 0 !important;
        max-height: 0 !important;
    }

    .nav-links li {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        width: 100%;
    }

    .nav-links li a {
        color: black !important;
        font-size: 16px;
        padding: 10px 20px;
        display: block;
        width: 100%;
    }

    .nav-links li a.active,
    .nav-links li a:hover {
        background: black;
        color: white !important;
        font-weight: var(--bold);
        border-radius: 10px;
        width: 100%;
    }

    .content-nav span ul li a.active::after,
    .content-nav span ul li a:hover::after {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .parent-nav.scrolled .burger-menu i {
        color: black;
    }
}

/* === Accessibility Style === */
.accessibility {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999999;
    transition: transform 0.4s ease;
}

.accessibility.hide-left {
    transform: translate(-150%, -50%);
}

.accessibility .accessibility-content{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility .toggle-btn{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    color: black;
    z-index: 30;
    cursor: pointer;
    transition: transform .45s ease;
}

.accessibility .toggle-btn i {
    color: black;
    font-size: 28px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.accessibility-content span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: transform .45s ease, opacity .25s ease;
    opacity: 0;
    pointer-events: none;
}

.accessibility.open .accessibility-content span {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(100px) rotate(calc(0deg - var(--angle)));
    opacity: 1;
    pointer-events: auto;
}

.accessibility-content span a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: white;
    color: black;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transform: rotate(0deg);
}

.accessibility-content span a i {
    color: black;
    font-size: 24px;
}

/* overlay */
.overlay-accessibility {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.accessibility.open ~ .overlay-accessibility {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 480px){
    .accessibility.open .accessibility-content span {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(75px) rotate(calc(0deg - var(--angle)));
    }
}

/* === Main Style === */
body {
    max-width: 100vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: black;
    overflow-x: hidden;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* overflow: hidden; */
}

.rules-of-85 {
    width: 85%;
}

/* = HERO = */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero .left {
    height: max-content;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero .left h1 {
    font-size: 120px;
    font-weight: var(--extra-black);
    text-transform: uppercase;
    font-family: 'Impact';
    text-align: left;
    letter-spacing: 3px;
    transition: opacity 0.5s ease-in-out;
    min-height: 20vh;
}

.hero .left p {
    font-weight: var(--regular);
}

.hero .left p span {
    font-weight: var(--bold);
}

.hero .left a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: max-content;
    color: white;
    gap: 10px;
    font-weight: var(--bold);
    background-color: transparent;
    border: 2px solid white;
    padding: 10px 35px;
    border-radius: 30px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.hero .left a i {
    background-color: white;
    color: var(--color-2222-semiblack-gray);
    font-weight: var(--extra-bold);
    width: 25px;
    height: 25px;
    border-radius: 20px;
    padding: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -22px;
    transition: all 1s ease;
}

.hero .left a:hover {
    background-color: white;
}

.hero .left a:hover span {
    color: var(--color-2222-semiblack-gray);
    transform: translateX(-11px);
}

.hero .left a:hover i {
    color: white;
    transform: translateX(120px);
    opacity: 0;
}

.hero .right {
    width: 50%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero .right .swiper-hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero .right .swiper-hero-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.hero .right .swiper-hero-section .swiper-slide > section {
    width: max-content;
    height: max-content;
    transition: all 0.5s ease;
    filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%  {
        transform: translateY(0);
        filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: translateY(-20px);
        filter: drop-shadow(2px 20px 5px rgba(0, 0, 0, 0.3));
    }
    100% { 
        transform: translateY(0);
        filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    }
}

.hero .right .swiper-hero-section .swiper-slide > section img {
    width: 100%;
    scale: 1.15;
    object-fit: cover;
    transform: rotate(-28deg);
    background: transparent;
}

/* controller - custom */
.hero .swiper-controls {
    position: absolute;
    top: 50%;
    right: -6.5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    gap: 20px;
    z-index: 10;
}

.hero .swiper-button-prev,
.hero .swiper-button-next,
.hero .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin: 0;
    background: transparent;
}

.hero .swiper-button-prev {
    order: 1;
}
.hero .swiper-pagination {
    order: 2;
}
.hero .swiper-button-next {
    order: 3;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
    content: none !important;
}

.hero .swiper-button-prev i,
.hero .swiper-button-next i {
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.hero .swiper-button-prev i:hover,
.hero .swiper-button-next i:hover {
    color: var(--color-D9D9-white-gray);
    transform: scale(1.1);
}

.hero .hero-pagination {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.hero .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: white;
    opacity: 0.6;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: transparent;
    border: 2px solid white;
    opacity: 1;
    width: 16px;
    height: 16px;
}

.hero .rectangle-bottom-layer {
    position: absolute;
    top: 50%;
    right: -8.7%;
    transform: translateY(-50%);
    width: clamp(400px, 20vw, 400px);
    height: 70%;
    background: linear-gradient(90deg, var(--color-D9D9-white-gray), var(--color-5A5A-gray));
    border-radius: 100px 0 0 100px;
    z-index: 0;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 60px;
}

.hero .rectangle-bottom-layer p {
    font-family: 'Impact';
    font-weight: var(--extra-black);
    -webkit-text-stroke: 1px var(--color-D9D9-white-gray);
    font-size: 110px;
    letter-spacing: 1px;
    color: transparent;
    background: transparent;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    transition: opacity 0.4s ease-in-out;
}

@media (max-width: 1200px) {
    .hero .left h1 {
        font-size: 100px;
        min-height: 10vh;
    }

    .hero .right,
    .hero .rectangle-bottom-layer {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero .left h1 {
        font-size: 80px;
        min-height: 5vh;
    }
}

/* = ABOUT US = */
.about {
    width: 100%;
    height: 100vh;
    background: var(--main-back-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 90px;
}

/* left */
.about .left {
    position: relative;
    width: 40%;
    padding-left: 110px;

    display: flex;
    align-items: center;
}

.about .left .rect {
    position: absolute; 
    width: 400px;
    height: 490px;
    background: linear-gradient(0deg, #d9d9d9b7 0%,
                                      #32313100 80%);
    border-radius: 20px;
    z-index: 0;
}

.about .left > section {
    width: max-content;
    height: max-content;
    filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    animation: aboutFloat 3s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%  {
        transform: translateY(0);
        filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: translateY(-20px);
        filter: drop-shadow(2px 20px 5px rgba(0, 0, 0, 0.3));
    }
    100% { 
        transform: translateY(0);
        filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.3));
    }
}

.about .left > section img {
    position: relative;
    width: 45vw;
    top: -30px;
    left: -200px;
    height: auto;
    background: transparent;
    transform: scaleX(-1) rotate(-35deg);
    z-index: 2;
}

/* right */
.about .right {
    max-height: 100%;
    text-align: justify;
}

.about .right > section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 17px 0 37px 0;
    opacity: 0.75;
}

.about .right a {
    background: linear-gradient(135deg, var(--color-D9D9-white-gray), var(--color-5A5A-gray));
    color: var(--color-2222-semiblack-gray);
    padding: 14px 30px;
    border-radius: 5px;

    font-weight: var(--bold);
    font-size: 18px;
    scale: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;

    width: max-content;
    height: max-content;
}

.about .right a > i {
    color: var(--color-2222-semiblack-gray);
    margin: 1.5px 0 0 -1px;
}

.about .right a:hover {
    scale: 1.05;
    gap: 14px;
    background: linear-gradient(135deg, var(--color-D9D9-white-gray), var(--color-D9D9-white-gray));
}

.about .right a:active {
    scale: 1;
    gap: 7px;
    background: linear-gradient(135deg, var(--color-D9D9-white-gray), var(--color-D9D9-white-gray));
}

.about .right a:hover > i {
    transform: rotate(90deg);
    margin: 0 0 0 -1px;
}

.about .right a:hover > i {
    transform: rotate(90deg);
}

@media (max-width: 1200px) {
    .about {
        height: max-content;
    }

    .about .content {
        flex-direction: column;
        height: max-content;
        gap: 20px;
    }

    .about .left {
        position: relative;
        width: max-content;
        height: max-content;
        padding-left: 0;

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

    .about .left .rect {
        width: 85%;
        height: 500px;
        padding: 20px;
    }

    .about .left > section img {
        position: relative;
        width: 450px;
        top: 0;
        left: 0;
        height: auto;
        background: transparent;
        transform: scaleX(-1) rotate(-35deg);
        z-index: 2;
    }

    .about .right a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about .left {
        position: relative;
        width: max-content;
        padding-left: 0;
        overflow: hidden;

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

    .about .left .rect {
        width: 85%;
        height: 400px;
    }
}

/* = BRAND ICONS = */
.brand-icons {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: max-content;
    background: var(--main-back-color);
}

.brand-icons .content {
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
}

.brand-icons .top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-icons .top p {
    font-weight: var(--bold);
}
.brand-icons .top p span {
    font-weight: var(--regular);
}

.brand-icons .top .line {
    position: relative;
    width: 100px;
    height: 2px;
    background: var(--color-5A5A-gray);
    margin: 25px 0 15px 0;
    opacity: 0.5;
}

.brand-icons .top .line::before,
.brand-icons .top .line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-5A5A-gray);
    transform: translateY(-50%) rotate(45deg);
}

.brand-icons .top .line::before {
    left: -6px; 
}
.brand-icons .top .line::after {
    right: -6px;
}

.brand-icons .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.brand-icons .bottom img {
    width: 125px;
    height: max-content;
}

@media (max-width: 1200px) {
    .brand-icons {
        padding: 200px 0 80px 0;
    }

    .brand-icons .bottom {
        gap: 30px;
    }

    .brand-icons .bottom img {
        width: 100px;
    }
}

@media (max-width: 1000px) {
    .brand-icons {
        padding: 100px 0 80px 0;
    }
}

/* = BEST SELLER = */
.best-seller {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-back-color);
}

.best-seller .content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

/* left */
.best-seller .left {
    margin-top: 70px;
    max-width: 56%;
}

.best-seller .left .top .paragraf {
    margin: 7px 0 27px 0;
    opacity: 0.75;
    text-align: justify;
}

.best-seller .left .bottom {
    width: 47vw;
    height: max-content;
}

.best-seller .left .bottom > p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.best-seller .left .bottom .swiper-best-seller {
    width: 100%;
    height: 25vh;
    position: relative;
}

.best-seller .left .bottom .swiper-best-seller .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 150px;
    opacity: 0.2;
    border: 2px solid transparent;
    cursor: grab;
    position: relative;
    overflow: hidden;
}

.best-seller .left .bottom .swiper-best-seller .swiper-slide img {
    width: 85%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
}

.best-seller .left .bottom .swiper-best-seller .swiper-slide-next + .swiper-slide {
    border: 3px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.best-seller .left .bottom .swiper-best-seller .swiper-slide-next + .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 35%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.08) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 3;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        left: 120%;
        opacity: 0.7;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

.best-seller .left .bottom .swiper-best-seller .best-seller-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center; 
}

.best-seller .left .bottom .swiper-best-seller .swiper-pagination-bullet {
    background: white;
    opacity: 0.3;
    transition: 0.3s;
}

.best-seller .left .bottom .swiper-best-seller .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* right */
.best-seller .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    margin-top: -30px;
    margin-left: 47px;

    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.best-seller .right section {
    scale: 1;
    width: max-content;
    height: max-content;
    transition: all 1s ease;
}

.best-seller .right:hover > section {
    scale: 0.65;
    transform: translateY(80px);
}

.best-seller .right section img {
    width: 36vw;
    height: auto;
    position: relative;
    margin: 7px 65px 5px 0;
    transition: all 0.5s ease; 
    animation: bestSellerGlow 3.5s infinite ease-in-out,
               bestSellerFloat 4s infinite ease-in-out;
    transform-origin: center;
    z-index: 1;
}

@keyframes bestSellerGlow {
    0% {
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08))
                drop-shadow(0 0 12px rgba(255, 255, 255, 0.05))
                drop-shadow(0 0 18px rgba(255, 255, 255, 0.03));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.18))
                drop-shadow(0 0 28px rgba(255, 255, 255, 0.15))
                drop-shadow(0 0 36px rgba(255, 255, 255, 0.06));
    }
    100% {
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08))
                drop-shadow(0 0 12px rgba(255, 255, 255, 0.05))
                drop-shadow(0 0 18px rgba(255, 255, 255, 0.03));
    }
}

@keyframes bestSellerFloat {
    0%   { transform: rotate(-30deg) translateY(0) scale(1); }
    50%  { transform: rotate(-30deg) translateY(-20px) translateX(20px) scale(1.01); }
    100% { transform: rotate(-30deg) translateY(0) scale(1); }
}

.best-seller .right .layer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
}

.best-seller .right .layer h3 {
    margin: 7px 0;
    overflow: hidden;
    font-size: 32px;
    font-weight: var(--extra-bold);
    color: white;
    position: relative;
    z-index: 1;
}

.best-seller .line-best-seller {
    position: relative;
    width: 100px;
    height: 4px;
    margin-top: 5px;
    background-color: var(--color-D9D9-white-gray);
    opacity: 0.5;
}

.best-seller .line-best-seller::before,
.best-seller .line-best-seller::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--color-D9D9-white-gray);
    transform: translateY(-50%);
    border-radius: 50%;
}

.best-seller .line-best-seller::before {
    left: -6px; 
}
.best-seller .line-best-seller::after {
    right: -6px;
}

/* hover layer */
.best-seller .right:hover > .layer {
    opacity: 0;
}

.best-seller .hover-layer {
    position: absolute;
    inset: 0;

    width: 90%;
    height: 100%;
    padding: 30px 40px;
    margin-left: 40px;

    border: 2.5px solid #5a5a5a18;
    border-radius: 10px;
    background: linear-gradient(-135deg, rgba(115, 115, 115, 0.01), rgba(255, 255, 255, 0.01));

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

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 3;
    color: white;
    text-align: center;
}

.best-seller .hover-layer .top-layer h3 {
    font-size: 36px;
}

.best-seller .hover-layer .top-layer .total-sell {
    font-size: 18px;
    opacity: 0.75;
}

.best-seller .hover-layer .bottom-layer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
}

.best-seller .hover-layer .bottom-layer section:first-child {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.best-seller .hover-layer .bottom-layer section:first-child span:last-child {
    text-align: right;
}

.best-seller .hover-layer .bottom-layer section:first-child span:last-child h4 {
    font-size: 18px;
    font-weight: var(--regular);
    opacity: 0.75;
}

.best-seller .hover-layer .bottom-layer section:first-child span:last-child p {
    font-size: 32px;
    font-weight: var(--extra-bold);
}

.best-seller .hover-layer .bottom-layer section:first-child span:first-child {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.best-seller .hover-layer .bottom-layer section:first-child span:first-child i {
    width: 50px;
    height: 50px;

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

    border: 2px solid white;
    background: white;
    text-align: center;
    font-size: 28px;
    color: black;
    border-radius: 5px;
    -webkit-text-stroke: 0.5px black;
}

.best-seller .hover-layer .bottom-layer section:first-child span:first-child i:hover {
    color: white;
    -webkit-text-stroke: 0.5px white;
    background: rgba(255, 255, 255, 0.5);
    scale: 1.05;
}

.best-seller .hover-layer .bottom-layer section:last-child {
    width: 100%;
    padding-top: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.best-seller .hover-layer .bottom-layer section .best-brand-name {
    font-size: 32px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

.best-seller .hover-layer .bottom-layer section .best-brand-seri-name {
    font-size: 20px;
    font-weight: var(--light);
    opacity: 0.75;
}

.best-seller .right:hover .hover-layer {
    opacity: 1;
    transform: translateY(0px);
}

@media (max-width: 1200px) {
    .best-seller {
        height: 160vh;
    }

    .best-seller .content {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .best-seller .left,
    .best-seller .left .bottom {
        width: 100%;
        max-width: 100%;
    }

    .best-seller .right .layer,
    .best-seller .right {
        width: 100%;
        height: 100%;
        margin-left: 0;
        padding: 0;
    }

    .best-seller .right section {
        transform: translateY(100px);
    }

    .best-seller .right:hover > section {
        scale: 1;
        transform: translateY(200px);
    }

    .best-seller .right:hover > section {
        scale: 1;
        transform: translateY(150px);
    }

    .best-seller .right section img {
        margin: 0;
        width: 60vw;
    }

    .best-seller .hover-layer {
        margin: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        gap: 100px;
    }

    .best-seller .right:hover .hover-layer {
        opacity: 1;
        transform: translateY(-55px);
    }

    .best-seller .hover-layer .bottom-layer {
        padding: 0;
    }
}

/* == BIG DOUBLE CONTENT == */
.big-double-content {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-back-color);
    position: relative;
    overflow: hidden;
}

/* pseudo lingkaran */
.big-double-content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--color-F3F0E8-white-krem);
    transition: transform 0.8s ease;
    z-index: 0;
}

/* aktif → lingkaran membesar isi bg */
.big-double-content.bg-active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* biar konten selalu di atas lingkar */
.big-double-content > * {
    position: relative;
    z-index: 1;
}

/* reverse → tinggal kembali scale(0) */
.big-double-content.bg-reverse::after {
    transform: translate(-50%, -50%) scale(0);
}

/* = COLORFUL = */
.color-product {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: black;
    transition: opacity 0.4s ease;
}

.color-product.hide {
    opacity: 0;
    pointer-events: none;
}

.color-product .top {
    text-align: center;
    margin: 40px 0 5px 0;
}

.color-product .top p {
    opacity: 0.75;
}
.color-product .top p span {
    font-weight: var(--medium);
    font-style: italic;
}

.color-product .swiper-colorful {
    display: flex;
    align-items: center;
    width: 85vw;
    height: max-content;
    min-height: 70vh;
    padding: 50px 0;
}

.color-product .swiper-colorful .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: max-content;
    height: max-content;
    min-height: max-content;
    transition: transform 0.4s ease, opacity 0.4s ease;
    background: transparent;
    opacity: 0.2;
    filter: saturate(0);
    cursor: grab;
}

.color-product .swiper-colorful .swiper-slide .inside-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-left: -35px;
}

.color-product .swiper-colorful .swiper-slide .inside-top .left {
    display: flex;
    flex-direction: column;
    width: max-content;
    height: max-content;
    gap: 12.5px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 5;
    background: transparent;
}

.color-product .swiper-colorful .swiper-slide .inside-top .left.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.color-product .swiper-colorful .swiper-slide .inside-top .left .rect-color {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-product .swiper-colorful .swiper-slide .inside-top .left .rect-color:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.color-product .swiper-colorful .swiper-slide .inside-top .left .rect-color.selected {
    transform: scale(3.0);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transform: scale(1.15);
}

.color-product .swiper-colorful .swiper-slide .inside-top .right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-product .swiper-colorful .swiper-slide .inside-top .right .rect-layer-1 {
    position: absolute;
    width: 210px;
    height: 210px;
    max-width: 210px;
    max-height: 210px;
    border-radius: 50%;
    transition: transform 0.5s ease, background 0.5s ease, opacity 0.5s ease;
    transform-origin: center center; 
}
.color-product .swiper-colorful .swiper-slide .inside-top .right .rect-layer-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    max-width: 250px;
    max-height: 250px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s ease-in-out; 
}

.swiper-colorful .swiper-slide-active section {
    transition: all 0.5s ease;
    filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.5));
    animation: colorfullFloat 3s ease-in-out infinite;
}

@keyframes colorfullFloat {
    0%  {
        transform: translateY(0) scale(1);
        filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.5));
    }
    50% {
        transform: translateY(-20px) scale(1.05 ); 
        filter: drop-shadow(2px 10px 5px rgba(0, 0, 0, 0.5));
    }
    100% { 
        transform: translateY(0) scale(1);
        filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.5));
    }
}

.swiper-colorful .swiper-slide section #shoe-img {
    position: relative;
    background: transparent;
    max-width: 20vw;
    max-height: max-content;

    transition: all 0.5s ease;
    transform-origin: center center;
    border-radius: 10%;
    opacity: 1;
}

.swiper-colorful .swiper-slide section #shoe-img.fade-out {
    opacity: 0.5;
}

.swiper-colorful .swiper-slide-active section #shoe-img {
    transform: scale(1.2) rotate(-20deg);
    filter: brightness(1);
}

.swiper-colorful .swiper-slide-active section #shoe-img:hover {
    transform: scale(1.4) rotate(-20deg);
    filter: brightness(1.05);
}

.swiper-colorful .swiper-slide-prev section #shoe-img,
.swiper-colorful .swiper-slide-next section #shoe-img {
    transform: scale(0.7) rotate(0deg);
    filter: brightness(0.9);
}

.swiper-colorful .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) section #shoe-img {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.2;
    filter: saturate(0);
}

#shoe-img.view-large {
    max-width: 40vw;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2) rotate(-20deg);
    filter: brightness(1.05);
    z-index: 99;
}

.color-product .swiper-colorful .swiper-slide .inside-bottom {
    margin-top: 12px;
    text-align: center;
}

.color-product .swiper-colorful .swiper-slide .inside-bottom .instruction {
    font-size: 12px;
    font-style: italic;
    opacity: 0.3;
    margin-top: 15px;
}

.color-product .swiper-colorful .swiper-slide .inside-bottom #title {
    font-size: 24px;
    font-weight: var(--extra-bold);
    font-style: italic;
    margin-bottom: -2px;
}

.color-product .swiper-colorful .swiper-slide .inside-bottom #seri-title {
    opacity: 0.75;
}

.color-product .swiper-colorful .swiper-slide-active {
    transform: scale(1.2);
    filter: saturate(100%);
    opacity: 1;
    z-index: 10;
}

/* controller - custom */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.color-prev, .color-next {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(-130%) scale(1);
    transition: all 0.3s ease;
    color: white;
    font-size: 32px;
    z-index: 20;
}

.color-prev:hover, .color-next:hover {
    color: var(--color-2222-semiblack-gray);
    transform: translateY(-130%) scale(1.3);
}

.color-prev:hover, .color-next:active {
    transform: translateY(-130%) scale(1);
}

.color-prev {
    left: 20px;
}
.color-next {
    right: 20px;
}

@media (max-width: 1200px) {
    .color-product .swiper-colorful {
        padding-top: 100px;
    }

    .color-product .swiper-colorful .swiper-slide .inside-top {
        flex-direction: column;
        flex-direction: column-reverse;
        margin-left: 0;
    }
    .color-product .swiper-colorful .swiper-slide .inside-top .left {
        flex-direction: row;
        margin-top: 50px;
    }
}

@media (max-width: 1000px) {
    .color-product {
        padding: 100px 0;
    }

    .color-product .swiper-colorful .swiper-slide .inside-top .left {
        flex-direction: row;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .color-product {
        height: max-content;
        padding: 200px 0;
    }

    .color-product .swiper-colorful {
        padding: 100px 0 250px 0;
    }

    .color-product .swiper-colorful .swiper-slide .inside-top .left {
        flex-direction: row;
        margin-top: 50px;
    }

    .swiper-colorful .swiper-slide section #shoe-img {
        max-width: none;
        width: 250px;
    }
}

/* = (View Large) COLORFUL = */
.view-large-cp {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    opacity: 0;

    overflow-y: auto;
    overscroll-behavior: contain; 
    transition: opacity 0.4s ease;
}

.view-large-cp.show {
    display: flex;
    opacity: 1;
}

/* Back Layer */
.view-large-cp .back-layer {
    position: relative;
    z-index: 1;
    background: transparent;

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

.view-large-cp .back-layer img {
    background: transparent;
    width: 77%;
    height: auto;
    margin-top: 100px;
    filter: drop-shadow(2px 15px 5px rgba(0,0,0,0.2));
}

/* Front Layer */
.view-large-cp .front-layer {
    position: absolute;
    width: 85%;
    height: 85%;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.view-large-cp .front-layer > div {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
    height: 150px;
    display: flex;
    flex-direction: column;
}

/* lay 1 */
.view-large-cp .front-layer .lay-1 p,
.view-large-cp .front-layer .lay-1 h1 {
    color: var(--color-2222-semiblack-gray);
}

.view-large-cp .front-layer .lay-1 h1 {
    font-family: 'Impact';
    font-size: 64px;
    margin: 10px 0;
}

.view-large-cp .front-layer .lay-1 #brand-vl {
    font-weight: var(--semi-bold);
}

.view-large-cp .front-layer .lay-1 #desc-vl {
    width: 60%;
}

.view-large-cp .front-layer .lay-1 button {
    width: max-content;
    height: max-content;
    background: transparent;
    border: none;

    font-size: 20px;
    font-weight: var(--medium);
    margin-top: 15px;
    color: var(--color-5A5A-gray);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 1;
    cursor: pointer;
    transition: all .3s ease;
}

.view-large-cp .front-layer .lay-1 button svg {
    margin-top: -2px;
}

.view-large-cp .front-layer .lay-1 button:hover {
    opacity: 0.5;
    gap: 7px;
}

/* lay 2 */
.view-large-cp .front-layer .lay-2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 45px;
}

.view-large-cp .front-layer .lay-2 section p {
    color: var(--color-2222-semiblack-gray);
    font-weight: var(--medium);
}

.view-large-cp .front-layer .lay-2 section .size-picker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: max-content;
    height: max-content;
    gap: 10px;
    margin: 10px 0;
}

.view-large-cp .front-layer .lay-2 section .size-picker p {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 2px solid #E1DED7;
    cursor: pointer;
    user-select: none;

    width: 40px;
    height: 40px;

    font-size: 16px;
    transition: all .5s ease;
}

.view-large-cp .front-layer .lay-2 section .size-picker p.selected {
    background: var(--color-2222-semiblack-gray);
    font-weight: var(--semi-bold);
    color: white;
}

.view-large-cp .front-layer .lay-2 section .color-picker {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.view-large-cp .front-layer .lay-2 section .color-picker .rect-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-large-cp .front-layer .lay-2 section .color-picker .rect-color:hover {
    transform: scale(1.02);
}

.view-large-cp .front-layer .lay-2 section .color-picker .rect-color.selected {
    border: 3px solid var(--color-2222-semiblack-gray);
}

/* lay 3 */
.view-large-cp .front-layer .lay-3 {
    display: flex;
    justify-content: flex-end;
}

.view-large-cp .front-layer .lay-3 p {
    color: var(--color-2222-semiblack-gray);
    font-weight: var(--medium);
}
.view-large-cp .front-layer .lay-3 #price-number {
    font-weight: var(--extra-bold);
    font-size: 36px;
}

/* lay 4 */
.view-large-cp .front-layer .lay-4 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.view-large-cp .front-layer .lay-4 > section,
.view-large-cp .front-layer .lay-4 > section button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border: none;
    gap: 5px;
}

.view-large-cp .front-layer .lay-4 > section button {
    background-color: var(--color-2222-semiblack-gray);
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: var(--semi-bold);
    cursor: pointer;
    gap: 8px;
}

.view-large-cp .front-layer .lay-4 > section #like-vl-cp {
    padding: 13.5px;
    font-size: 20px;
}

.view-large-cp .front-layer .lay-4 > section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.75;
}

@media (max-width: 1000px) {
    .view-large-cp {
        height: max-content;
        padding: 500px 0;
    }
    .view-large-cp .front-layer {
        justify-content: center;
        height: max-content;
        padding: 500px 0;
    }

    .view-large-cp .front-layer > div {
        flex: 1 1 100%;
    }

    .view-large-cp .front-layer .lay-1 {
        margin-top: 100px;
    }

    .view-large-cp .front-layer .lay-2,
    .view-large-cp .front-layer .lay-3,
    .view-large-cp .front-layer .lay-4 {
        transform: translateY(310px);
    }

    .view-large-cp .front-layer .lay-2 {
        height: max-content;
        align-items: flex-start;
    }
}

/* = DISCOUNT SALE = */
.discount-sale {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    background: url(/images-decoration/background-for-discount.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.discount-sale .trapezium-box {
    position: relative;
    width: 55%;
    height: 60%;
    margin-left: -60%;
    background: linear-gradient(to left, #222222, #0A0A0A);
    border: 3px solid rgba(255, 255, 255, 0.2);
    filter: drop-shadow(4px 4px 5px black);
    opacity: 0.7;
    border-radius: 10px;
    transform: skewX(-15deg);
    overflow: hidden;
    z-index: 2;
}

.discount-sale .content {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

/* left */
.discount-sale .content .left {
    margin: -50px 0 0 50px;
}

.discount-sale .content .left > section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
    filter: drop-shadow(4px 10px 10px rgba(0, 0, 0, 0.5));
}

.discount-sale .content .left section > .day-discount {
    font-weight: var(--black);
    font-size: 170px;
}

.discount-sale .content .left section > section {
    display: flex;
    flex-direction: column;
}

.discount-sale .content .left section > section > .month-discount {
    font-weight: var(--extra-bold);
    font-size: 48px;
}
.discount-sale .content .left section > section > .year-discount {
    font-weight: var(--regular);
    font-size: 42px;
}

.discount-sale .content .left .counter {
    display: flex;
    margin-top: -35px;
    gap: 20px;
}

.discount-sale .content .left section > p {
    font-weight: var(--light);
}
.discount-sale .content .left section > p span {
    font-weight: var(--bold);
}

/* right */
.discount-sale .content .right {
    width: 46%;
}

.discount-sale .content .right > h3 {
    font-size: 40px;
}

.discount-sale .content .right > p {
    opacity: 0.75;
    margin: 5px 0;
}

.discount-sale .content .right > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    height: max-content;
    gap: 7px;
    font-size: 18px;
    font-weight: var(--bold);
    background: linear-gradient(-135deg, var(--color-D9D9-white-gray), var(--color-5A5A-gray));
    color: var(--color-2222-semiblack-gray);
    margin-top: 15px;
    padding: 10px 30px;
    border-radius: 5px;
    scale: 1;
    box-shadow: 4px 4px 5px black;
    transition: all .4s ease;
}

.discount-sale .content .right > a i {
    font-size: 16px;
}

.discount-sale .content .right > a span,
.discount-sale .content .right > a i {
    color: var(--color-2222-semiblack-gray);
}

.discount-sale .content .right > a:hover {
    background: linear-gradient(-135deg, var(--color-D9D9-white-gray), var(--color-D9D9-white-gray));
    gap: 12px;
    scale: 1.02;
    box-shadow: 8px 8px 5px black;
}

.discount-sale .content .right > a:active {
    background: linear-gradient(-135deg, var(--color-D9D9-white-gray), var(--color-D9D9-white-gray));
    box-shadow: 4px 4px 5px black;
    gap: 12px;
    scale: 1;
}

@media (max-width: 1200px) {
    .discount-sale{
        width: 100%;
        height: max-content;
        padding: 250px 0;
    }

    .discount-sale,
    .discount-sale .content {
        flex-direction: column;
        gap: 40px;
    }

    .discount-sale .trapezium-box {
        display: none;
    }

    .discount-sale .content .left {
        margin: 0;
    }

    .discount-sale .content .left > section:first-child {
        padding-bottom: 30px;
    }

    .discount-sale .content .left section > .day-discount {
        font-size: 120px;
    }

    .discount-sale .content .right {
        width: 100%;
    }

    .discount-sale .content .right > h3 {
        font-size: 30px;
    }

    .discount-sale .content .right > a {
        font-size: 16px;
    }
}

/* = ALL CATALOG = */
.all-catalog {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* top */
.all-catalog > .top {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* line */
.all-catalog .parent-line {
    width: 100%;
    display: flex;
    justify-content: center;
}

.all-catalog .line {
    position: relative;
    width: 200px;
    height: 2px;
    background: var(--color-5A5A-gray);
    margin: 15px 0 15px 5px;
    border-radius: 3px;
    opacity: 0.4;
}

.all-catalog .line::before,
.all-catalog .line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-5A5A-gray);
    transform: translateY(-50%) rotate(45deg);
}

.all-catalog .line::before {
    left: -6px;
}
.all-catalog .line::after {
    right: -6px;
}

/* bottom */
.all-catalog > .bottom {
    width: 100%;
    height: max-content;
    margin-top: 15px;
}

.all-catalog .all-catalog-slides {
    width: 100%;
}

.all-catalog .all-catalog-slides .swiper-wrapper {
    display: flex;
    align-items: stretch;
    height: 57vh;
    padding-top: 5px;
}

.all-catalog .all-catalog-slides .swiper-slide {
    position: relative;
    width: 340px;
    height: max-content;
    border: 2.5px solid #5a5a5a18;
    border-radius: 10px;
    padding: 27px 27px;
    background: linear-gradient(-135deg, rgba(115, 115, 115, 0.1), rgba(255, 255, 255, 0.1));
    cursor: grab;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.all-catalog .all-catalog-slides .swiper-slide:hover {
    transform: translateY(-5px);
}

.all-catalog .all-catalog-slides .swiper-slide .top {
    display: flex;
    flex-direction: column;
}
.all-catalog .all-catalog-slides .swiper-slide .top > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.all-catalog .all-catalog-slides .swiper-slide .top > div > p {
    font-size: 24px;
    font-weight: var(--extra-bold);
}
.all-catalog .all-catalog-slides .swiper-slide .top > p {
    font-size: 18px;
    margin-top: -3px;
}

.all-catalog .all-catalog-slides .swiper-slide > img {
    width: 100%;
    height: auto;
    display: block;
    scale: 1.2;
    margin: 10px 0;
    filter: drop-shadow(6px 6px 10px rgba(0, 0, 0, 0.8));
}

.all-catalog .all-catalog-slides .swiper-slide .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(90, 90, 90, 0.5);
    border-radius: 10px;
    padding: 12px 17px;
}

.all-catalog .all-catalog-slides .swiper-slide .bottom .price > p:first-child {
    font-weight: var(--regular);
    font-size: 16px;
    color: white;
    opacity: 0.75;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .bottom .price > p:first-child {
    color: black;
}

.all-catalog .all-catalog-slides .swiper-slide .bottom .price > .new-price-all-catalog {
    font-size: 20px;
    font-weight: var(--bold);
}

.all-catalog .all-catalog-slides .swiper-slide .bottom > button {
    background: white;
    color: var(--color-2222-semiblack-gray);
    border: none;
    font-size: 18px;
    font-weight: var(--bold);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.all-catalog .all-catalog-slides .swiper-slide .bottom > button:hover {
    opacity: 0.7;
}

.all-catalog .all-catalog-slides .swiper-slide .bottom > button i {
    color: var(--color-2222-semiblack-gray);
    -webkit-text-stroke: 0.5px var(--color-2222-semiblack-gray);
}

.all-catalog .catalog-scrollbar {
    background: rgba(255, 255, 255, 0.1) !important;
    width: 250px !important;
    height: 6px !important;
    border-radius: 3px !important;
    overflow: hidden;
    transform: translateX(200%);
}

.all-catalog .catalog-scrollbar .swiper-scrollbar-drag {
    background: var(--color-EDED-deeplayer-semiwhite) !important;
    opacity: 0.7 !important;
    border-radius: 3px !important;
    height: 100% !important;
}

/* overlay */
.all-catalog .all-catalog-slides .swiper-slide .overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(25, 25, 25, 0.2));
    backdrop-filter: blur(10px) brightness(50%);
    border-radius: 10px;
    padding: 30px;

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

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.45s ease-in-out;
    z-index: 2;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .overlay-layer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-layer .detail-btn,
.overlay-layer .full-screen-btn,
.overlay-layer .fav-btn {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-2222-semiblack-gray);
    border: none;
    border-radius: 10px;
    font-weight: var(--semi-bold);
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    cursor: pointer;
    transition: all 0.2s ease;
}
.overlay-layer .detail-btn {
    padding: 12px 35px;
}
.overlay-layer .full-screen-btn,
.overlay-layer .fav-btn {
    padding: 15px 18px;
}
.overlay-layer .fav-btn {
    -webkit-text-stroke: 0.5px var(--color-2222-semiblack-gray);
}

.overlay-layer button > i {
    color: var(--color-2222-semiblack-gray);
    font-size: 18px;
}

.overlay-layer .detail-btn:hover,
.overlay-layer .full-screen-btn:hover,
.overlay-layer .fav-btn:hover {
    background: var(--color-EDED-deeplayer-semiwhite);
    color: black;
}

.all-catalog .all-catalog-slides .swiper-slide .top,
.all-catalog .all-catalog-slides .swiper-slide .bottom {
    position: relative; 
    z-index: 3;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .bottom {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-2222-semiblack-gray);
    transition: all 0.3s ease;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .bottom p {
    color: var(--color-2222-semiblack-gray);
    transition: color 0.3s ease;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .bottom > button {
    background: var(--color-2222-semiblack-gray);
    color: white;
}

.all-catalog .all-catalog-slides .swiper-slide:hover .bottom > button i {
    color: white;
    -webkit-text-stroke: 0.5px white;
}

/* overlay popup */
.all-catalog .popup-overlay {
    position: fixed !important;
    z-index: 2147483647 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px) brightness(75%);

    width: 100%;
    height: 100%;
    
    display: none;
    align-items: center;
    justify-content: center;
}

.all-catalog .popup-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65vw;
    height: 75vh;

    background: linear-gradient(-135deg, rgba(0, 0, 0, 0.2), rgba(70, 70, 70, 0.2));
    border: 2.5px solid #5a5a5a80;
    backdrop-filter: blur(100px) brightness(5%);
    border-radius: 10px;
}

.all-catalog .popup-content img {
    width: 75%;
    height: auto;
    filter: drop-shadow(8px 8px 10px black);
}

.all-catalog .close-popup {
    position: absolute;
    top: 15px;
    right: 21px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.all-catalog .close-popup:hover {
    opacity: 0.5;
}

.all-catalog .popup-content.fade-out {
    animation: zoomOut 0.3s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.7);
        opacity: 0;
    }
}

.all-catalog .last-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.all-catalog .last-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}

.all-catalog .last-slide-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.all-catalog .last-slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.all-catalog .last-slide-content .view-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #111;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}
.all-catalog .last-slide-content .view-more-btn i {
    color: var(--color-2222-semiblack-gray);
    font-size: 20px;
}
.all-catalog .last-slide-content .view-more-btn:hover {
    background: #ddd;
}

@media (max-width: 1200px) {
    .all-catalog {
        height: 110vh;
    }
}

/* = EXCLUSIVE COLLAB = */
.exclusive-collab {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--main-back-color);
    padding: 30px 0;
}

.exclusive-collab .pattern-layer {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: url(/images-decoration/background-abstract-pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.exclusive-collab .top p,
.exclusive-collab .top h2 {
    text-align: center;
    color: white;
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.3));
}
.exclusive-collab .top h2 {
    background: linear-gradient(0deg, white, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: -5px 0;
}
.exclusive-collab .top h2 span {
    font-weight: var(--black);
}

.exclusive-collab .top > section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    opacity: 0.8;
    margin: 5px 0 15px 0;
}
.exclusive-collab .top > section > p {
    font-size: 20px;
    font-weight: var(--regular);
    font-style: italic;
    color: white;
}
.exclusive-collab .top > section > button {
    background: none;
    border: none;
}
.exclusive-collab .top > section > button > i {
    color: white;
    font-size: 20px;
}

.exclusive-collab .top > section > button > i:hover {
    color: var(--color-5A5A-gray);
    cursor: pointer;
}

.exclusive-collab .flex-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* item */
.exclusive-collab .flex-grid .item {
    flex: 1;
    min-width: 200px;
    height: 420px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease, flex 1s ease;
    z-index: 0;
}

.exclusive-collab .flex-grid .item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(to bottom, transparent, white);
    -webkit-mask: 
        linear-gradient(white 0 0) content-box, 
        linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.exclusive-collab .flex-grid .item.active::before {
    display: none;
}

.exclusive-collab .flex-grid .item:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 35%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.12) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shine 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 1;
    pointer-events: none;
    z-index: 3;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    50% {
        left: 120%;
        opacity: 0.9;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

.exclusive-collab .flex-grid .item:hover {
    background: linear-gradient(
        180deg,
        rgba(15, 60, 53, 0.6),
        rgba(41, 162, 143, 0.6)
    );
}

.exclusive-collab .flex-grid .item.active {
    flex: 10;
    background: linear-gradient(-45deg, #113E37, #339788);
    border: 7px solid rgba(255, 255, 255, 0.8);
}
.exclusive-collab .flex-grid .item.active:hover {
    background: linear-gradient(-45deg, #113E37, #339788);
}

.exclusive-collab .flex-grid .item:not(.active) {
    flex: 1;
    min-width: 50px;
    cursor: pointer;
}

/* overlay hover */
.exclusive-collab .flex-grid .item .overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}

.exclusive-collab .flex-grid .item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}
.exclusive-collab .flex-grid .item .overlay i {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.exclusive-collab .flex-grid .item .overlay p {
    font-weight: var(--bold);
}

/* disabled overlay */
.exclusive-collab .flex-grid .item.active .overlay {
    opacity: 1;
    transform: translateY(150%);
}

/* content text */
.exclusive-collab .flex-grid .item .content-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%) translateX(-50px);
    max-width: 50%;
    color: white;
    text-align: left;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 3;
}

.exclusive-collab .flex-grid .item.active .content-text {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.exclusive-collab .flex-grid .item.active .back-decor-icon {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: url(/images-shoes/dummy-harry-icon.png) no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
}

.exclusive-collab .flex-grid .item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to top, black, rgb(45, 45, 45));

    clip-path: polygon(
        100% 0,
        70% 0,
        0% 100%,
        100% 100%
    );
    
    z-index: 2;
}

.exclusive-collab .flex-grid .item .collab-icon-collab {
    display: none;
}
.exclusive-collab .flex-grid .item.active .collab-icon-collab {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 150px;
    height: auto;
    opacity: 0.8;
    z-index: 3;
    pointer-events: none;
}

.exclusive-collab .flex-grid .item > img {
    width: 250px;
    height: auto;
    scale: 1.1;
    transform: rotate(-30deg);
    margin-left: -20px;
    filter: drop-shadow(2px 5px 5px rgba(0,0,0,0.1));
    z-index: 3;
    transition: all 1s ease;
}

.exclusive-collab .flex-grid .item:hover > img {
    transform: rotate(-35deg);
}

.exclusive-collab .flex-grid .item.active > img,
.exclusive-collab .flex-grid .item.active:hover > img {
    transform: rotate(-20deg) translateX(120px) translateY(45px);
    scale: 1.7;
}

.exclusive-collab .flex-grid .item {
    position: relative;
    overflow: hidden;
}

.exclusive-collab .flex-grid .item .content-text .brand-icon-collab {
    width: auto;
    height: 60px;
    margin-bottom: -15px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

.exclusive-collab .flex-grid .item .content-text h3 {
    font-size: 48px;
    font-weight: var(--black);
    margin-bottom: 10px;
    filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.3));
}

.exclusive-collab .flex-grid .item .content-text h3 span {
    display: block;
    font-size: 20px;
    font-weight: var(--bold);
    margin-top: -5px;
}

.exclusive-collab .flex-grid .item .content-text p {
    font-size: 18px;
    line-height: 1.3;
    opacity: 0.9;
    margin: 10px 0 20px 0;
    font-weight: var(--light);
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.3));
}

/* normal event (all btn) */
.exclusive-collab .flex-grid .item .content-text .actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusive-collab .flex-grid .item .content-text .actions button {
    display: flex;
    align-items: center;
    justify-items: center;

    background: white;
    color: var(--color-2222-semiblack-gray);
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 5px;
}
.exclusive-collab .flex-grid .item .content-text .actions section button span {
    color: var(--color-2222-semiblack-gray);
    font-weight: var(--bold);
    font-size: 16px;
}

.exclusive-collab .flex-grid .item .content-text .actions button:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.exclusive-collab .flex-grid .item .content-text .actions button:active {
    transform: translateY(0px);
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
}

.exclusive-collab .flex-grid .item .content-text .actions button.no-hover:hover,
.exclusive-collab .flex-grid .item .content-text .actions button.no-hover:active {
    transform: none;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    cursor: default;
}

.exclusive-collab .flex-grid .item .content-text .actions > button {
    padding: 11px 15px;
}

/* normal event (btn cart) */
.exclusive-collab .flex-grid .item .content-text .actions section > button {
    padding: 7.5px 25px;
    gap: 8px;
    border: 3px solid white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.exclusive-collab .flex-grid .item .content-text .actions section > button i {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 2px solid rgba(128, 128, 128, 0.4);
    transition: all 0.8s ease;
}

.exclusive-collab .flex-grid .item .content-text .actions button i {
    color: var(--color-2222-semiblack-gray);
    font-size: 22px;
}

.exclusive-collab .flex-grid .item .content-text .actions .ph-bold {
    -webkit-text-stroke: 1px var(--color-2222-semiblack-gray);
}

/* event click (btn cart) */
.exclusive-collab .flex-grid .item .content-text .actions section > button.clicked i {
    transform: translateX(120px);
    margin-right: 0;
    padding-right: 0;
    opacity: 0;
    border-right: none;
}

.exclusive-collab .flex-grid .item .content-text .actions section > button.clicked {
    background: none;
    border: 3px solid white;
}

.exclusive-collab .flex-grid .item .content-text .actions section > button.clicked span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exclusive-collab .flex-grid .item .content-text .actions section > button.show-text::after {
    content: "Added to Cart";
    position: absolute;
    left: 25px;
    font-weight: var(--bold);
    font-size: 16px;
    color: white;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1200px) {
    .exclusive-collab,
    .exclusive-collab .pattern-layer {
        height: max-content;
    }

    .exclusive-collab .pattern-layer {
        padding: 80px 0;
    }

    .exclusive-collab .top {
        margin-bottom: 20px;
    }

    .exclusive-collab .flex-grid {
        flex-direction: column;
        height: 150vh;
    }

    .exclusive-collab .flex-grid .item,
    .exclusive-collab .flex-grid .item.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .exclusive-collab .flex-grid .item .content-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        height: max-content;
        left: 0;
        max-width: 100%;
        padding: 0 10%;
        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    }

    .exclusive-collab .flex-grid .item.active .content-text {
        transform: translateY(-90%) translateX(0%);
        opacity: 1;
        transition-delay: 0.4s;
    }

    .exclusive-collab .flex-grid .item.active > img,
    .exclusive-collab .flex-grid .item.active:hover > img {
        transform: rotate(0) translateX(0) translateY(110px);
        scale: 1.7;
    }
}

/* = TESTIMONIAL = */
.testimonial {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial .content {
    z-index: 99;
}

/* top */
.testimonial .content .top {
    text-align: center;
}

.testimonial .content .top .desc {
    opacity: 0.75;
}

/* center */
.testimonial .content .center .testimonial-slider {
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
    height: 200px;
}

.testimonial .content .center .testimonial-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    height: 150px;
    margin-top: 45px;
}

.testimonial .content .center .testimonial-slider .swiper-slide-active {
    opacity: 1;
    z-index: 5;
    animation: breathingSlide 3s ease-in-out infinite;
}
@keyframes breathingSlide {
    0%, 100% {
        transform: translateY(-10px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.testimonial .content .center .testimonial-slider .layer-1 {
    position: absolute;
    border-radius: 50%;
}

.testimonial .content .center .testimonial-slider .layer-1 {
    width: 120px;
    height: 120px;
    background: transparent;
    border: 3px solid var(--color-D9D9-white-gray);
    border-radius: 50%;
    z-index: 1;
    animation: none;
}

.testimonial .content .center .testimonial-slider .swiper-slide-active .layer-1 {
    border: 3px dashed var(--color-D9D9-white-gray);
    animation: rotateDashed 50s linear infinite;
}
@keyframes rotateDashed {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.testimonial .content .center .testimonial-slider img {
    width: 95px;
    height: auto;
    object-fit: cover;
    z-index: 2;
    border: 4px solid var(--color-D9D9-white-gray);
    border-radius: 50%;
}

.testimonial .content .center .testimonial-slider .swiper-pagination,
.testimonial .content .center .testimonial-slider .swiper-button-next,
.testimonial .content .center .testimonial-slider .swiper-button-prev {
    display: none !important;
}

/* bottom */
.testimonial .content .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(7px);
}

.testimonial .content .bottom > .fa-caret-up {
    color: var(--color-5A5A-gray);
    transform: translateY(-30px);
    opacity: 0.7;
    font-size: 32px;
}

.testimonial .content .bottom > i,
.testimonial .content .bottom h3 {
    font-size: 24px;
}

.testimonial .content .bottom h3 {
    font-weight: var(--black);
    margin-bottom: -3px;
}

.testimonial .content .bottom > .fa-quote-left {
    transform: translateY(10px);
    opacity: 0.5;
}

.testimonial .content .bottom section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 6%;
    min-height: 130px;
    max-height: 130px;
    width: 72%;
}

.testimonial .content .bottom section button {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
}

.testimonial .content .bottom section button:hover {
    opacity: 1;
}

.testimonial .content .bottom section .customer-say {
    width: 80%;
    text-align: center;
    font-size: 18px;
    font-weight: var(--medium);
}

.customer-name,
.customer-roles,
.customer-say {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer-info-show {
    opacity: 1;
}

.testimonial .content .bottom .custom-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
}

.testimonial .content .bottom .custom-pagination span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #777;
    display: inline-block;
    transition: all 0.3s ease;
}

.testimonial .content .bottom .custom-pagination span.active {
    background: white;
    width: 25px;
}

.testimonial .circle-back-decor {
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%);
    
    width: 140%;
    height: 42%;
    
    background: var(--color-5A5A-gray);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    z-index: 0;
    opacity: 0.2;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial {
        height: max-content;
        padding: 50px 0;
    }

    .testimonial .content .bottom section {
        justify-content: center;
        min-height: 0;
        max-height: 700px;
        width: 100%;
    }

    .testimonial .circle-back-decor {
        border-radius: 0;
    }
}

/* = RANDOM GALLERY = */
.random-gallery {
    height: max-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: rgba(33, 33, 33, 0.4);
    padding: 30px 0;
}

.random-gallery .pattern-layer {
    width: 100%;
    height: 100%;
    padding: 50px 0;

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

    background: 
        rgba(33, 33, 33, 0.4)
        url(/images-decoration/background-abstract-pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* slider */
.random-gallery .pattern-layer .content .rand-gallery-slider {
    width: 100%;
    overflow: hidden;
}

.random-gallery .pattern-layer .content .rand-gallery-slider .swiper-slide {
    position: relative;
    margin-bottom: 10px;
}

.random-gallery .pattern-layer .content .rand-gallery-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.3));
    margin: -20px 0 10px 0;
}

.random-gallery .pattern-layer .content .rand-gallery-slider .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 12px;
    background: linear-gradient(90deg, var(--color-D9D9-white-gray), #555555);
    opacity: 0.3;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .random-gallery .pattern-layer .content .rand-gallery-slider .swiper-slide img {
        width: 250px !important;
        height: auto;
    }

    .random-gallery .pattern-layer .content .rand-gallery-slider .swiper-slide::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 48%;
        height: 12px;
    }
}

/* = CONTACT US = */
.contact-us {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-us .top {
    text-align: center;
}

.contact-us .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.contact-us .bottom i {
    font-size: 24px;
    background: white;
    color: var(--main-back-color);
    width: 52px;
    height: 52px;
    border-radius: 100px;

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

.contact-us .bottom i:hover {
    opacity: 0.65;
}

/* left */
.contact-us .bottom .left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-us .bottom .left p {
    color: var(--color-D9D9-white-gray);
}

/* left - top content */
.contact-us .bottom .left .top-content h3 {
    font-size: 32px;
    font-weight: var(--bold);
}

/* left - center content */
.contact-us .bottom .left .center-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-us .bottom .left .center-content section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-us .bottom .left .center-content section div h4 {
    font-size: 20px;
}

/* left - bottom content */
.contact-us .bottom .left .bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
}

.contact-us .bottom .left .left-bottom h4 {
    font-size: 20px;
}

.contact-us .bottom .left .right-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-us .rect-message {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, 50%);
    width: 100%;
    height: 62%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px 0 0 20px;
    z-index: 2;
}

/* right */
.contact-us .bottom .right {
    position: relative;
    padding: 30px 0;
    border-radius: 10px 10px 0 0;
    width: 45%;
    z-index: 3;
}

.contact-us .bottom .right h3 {
    font-size: 32px;
}

.contact-us .bottom .right > p {
    opacity: 0.75;
}

.contact-us .bottom .form {
    margin-top: 20px;
    width: 100%;
}

.contact-us .bottom .form input {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    padding: 8px 10px;
    margin-bottom: 30px;
    width: 100%;
}

.contact-us .bottom .form section {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
}

.contact-us .bottom .form .area {
    width: 100%;
}

.contact-us .bottom .form .area textarea {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    padding: 8px 10px;
    width: 120%;
    height: 80px;
    max-height: 100px;
    min-height: 80px;
    min-width: 100%;
}

.contact-us .bottom .send-message-btn {
    width: 100%;
    height: 13%;
    font-size: 18px;
    font-weight: var(--bold);
    color: var(--color-2222-semiblack-gray);
    background: white;
    border: none;
    border-radius: 20px 0 20px 20px;
    margin-top: 20px;
}

.contact-us .bottom .send-message-btn:hover {
    opacity: 0.75;
    cursor: pointer;
}

.contact-us .bottom .send-message-btn:active {
    opacity: 0.75;
    cursor: pointer;
    scale: 0.98;
}

@media (max-width: 1300px) {
    .contact-us {
        height: max-content;
        padding: 80px 0 10px 0;
    }

    .contact-us .bottom {
        flex-direction: column;
        gap: 100px;
    }

    .contact-us .rect-message {
        display: none;
    }

    .contact-us .bottom .right {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 50px 30px;
        width: 100%;
        height: max-content;
    }

    .contact-us .bottom .form .area textarea {
        max-height: none;
    }

    .contact-us .bottom .send-message-btn {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .contact-us .bottom {
        gap: 50px;
    }
}

/* = LOCATION = */
.location {
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10vh 0;
}

.location iframe {
    width: 100%;
    filter: saturate(0);
    border: 5px solid white;
    border-radius: 10px;
}

/* === Footer Style === */
footer {
    position: relative;
    width: 100%;
    height: max-content;
    padding-top: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    border-radius: 15px 15px 0 0;
}

footer .container {
    max-width: 1320px;
    margin: 0 auto;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

footer .wrapper h1 {
    font-size: 70px;
    color: var(--main-back-color);
    font-family: 'Archivo Black';
}

footer .wrapper .footer-widget {
    width: calc(20% - 30px);
    margin: 15px 0;
}

footer .wrapper .footer-widget:nth-child(1) {
    width: calc(40% - 50px);
    margin-right: 15px;
}

footer .footer-widget .desc {
    color: var(--color-2222-semiblack-gray);
    font-weight: var(--regular);
    line-height: 1.8 !important;
    opacity: 0.9;
    font-size: 18px;
    margin: 5px 0 40px 0;
}

footer .wrapper .footer-widget .socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .wrapper .footer-widget .socials li {
    list-style: none;
}

footer .wrapper .footer-widget .socials li a {
    width: 52px;
    height: 52px;
    margin-right: 10px;
    background: black;
    border: 2px solid black;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .wrapper .footer-widget .socials li a:hover {
    background: transparent;
    border: 2px solid black;
    color: black;
}

footer .wrapper .footer-widget .socials li a i:hover {
    color: black;
}

footer .wrapper .footer-widget h6 {
    color: var(--main-back-color);
    margin: 10px 0 35px;
    font-size: 24px;
    font-weight: var(--bold);
}

footer .wrapper .footer-widget .links li {
    list-style: none;
}

footer .wrapper .footer-widget .links li a {
    color: var(--color-2222-semiblack-gray);
    font-size: 18px;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 2;
    opacity: 0.9;
    transition: all 0.3s ease-out;
}

footer .wrapper .footer-widget .links li a:hover {
    font-weight: var(--medium);
    letter-spacing: 0.5px;
    opacity: 1;
}

footer .copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    border-radius: 10px;
    margin: 20px 0 30px 0;
    padding: 20px 30px;
    color: white;
    background: black;
}

footer .copyright-wrapper p {
    color: white;
    font-size: 18px;
    font-weight: var(--medium);
    text-align: center;
}

@media (max-width: 992px) {
    footer .container {
        max-width: 960px;
    }

    footer .wrapper .footer-widget,
    footer .wrapper .footer-widget:nth-child(1) {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    footer .container {
        max-width: 720px;
    }

    footer .wrapper .footer-widget,
    footer .wrapper .footer-widget:nth-child(1) {
        width: 100%;
        margin: 0 10px 50px;
    }

    footer .copyright-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

/* === GO UP Style === */
#goUpBtn {
    display: none;
    position: fixed;
    bottom: 130px;
    right: 30px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: white;
    cursor: pointer;

    width: 50px;
    height: 50px;

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

    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#goUpBtn i {
    color: black;
}

#goUpBtn:hover {
    transform: translateY(-5px);
    opacity: 0.75;
}
