* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #a38a71; /* Warna latar belakang luar */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card-container {
    width: 950px;
    height: 600px;
    background: white;
    border-radius: 60px; /* Sudut melengkung ekstrim */
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
}

/* Navbar */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    z-index: 10;
}

.logo { font-weight: 900; font-size: 1.2rem; }
.menu a { text-decoration: none; color: #333; margin: 0 15px; font-size: 0.8rem; font-weight: 700; }

/* Split Layout */
.content-split {
    display: flex;
    height: 100%;
}

.info-side {
    flex: 1;
    padding: 150px 60px 60px 80px;
    display: flex;
    flex-direction: column;
}

.image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.product-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: #333;
    margin-bottom: 20px;
}

.description {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Floating Effect */
.floating-shoe {
    width: 120%;
    transform: rotate(-15deg); /* Memutar sepatu agar dinamis */
    z-index: 5;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
    transition: 0.5s;
}

.floating-shoe:hover {
    transform: rotate(-10deg) scale(1.05);
}

/* Big BG Text */
.bg-text {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    right: -50px;
}

/* Buttons */
.cta-area { display: flex; gap: 20px; }
select { padding: 10px 20px; border-radius: 5px; border: none; background: #b0814a; color: white; }
.btn-cart { padding: 12px 30px; border-radius: 5px; border: none; background: #b0814a; color: white; font-weight: bold; cursor: pointer; }

/* Thumbnails */
.thumbnails {
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 6;
}

.thumb {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.thumb img { width: 80%; }
.thumb.active { border: 2px solid #333; }