/* ===========================================
SOCKSTORE ELEGANT PREMIUM THEME
Color Palette: Gold #c5a053 | Beige #e6dcc1 | White Bone #f8f5f0
=========================================== */

/* Base body */
body {
font-family: "Inter", "Poppins", sans-serif;
background-color: #f8f5f0; /* putih tulang lembut */
color: #3a3222;
}

/* Navbar */
.navbar {
background: #fffaf2;
border-bottom: 1px solid rgba(197, 160, 83, 0.2);
box-shadow: 0 2px 10px rgba(197, 160, 83, 0.05);
}
.navbar-brand span {
background: linear-gradient(90deg, #c5a053, #e0c793);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.navbar-toggler {
border: none;
color: #c5a053;
}
.navbar-nav .nav-link {
color: #4a402b;
position: relative;
transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 0;
height: 2px;
background: linear-gradient(90deg, #c5a053, #e0c793);
transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
color: #c5a053;
}
.navbar-nav .nav-link:hover::after {
width: 100%;
}

/* Buttons */
.btn-primary {
background: linear-gradient(90deg, #c5a053, #e0c793);
border: none;
color: #fff;
font-weight: 600;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(197, 160, 83, 0.4);
}
.btn-outline-primary {
border: 1px solid #c5a053;
color: #c5a053;
}
.btn-outline-primary:hover {
background: linear-gradient(90deg, #c5a053, #e0c793);
color: #fff;
}

/* Mobile bottom nav - Premium style */
.mobile-bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 70px;
background: #fdfaf5;
border-top: 1px solid rgba(197, 160, 83, 0.25);
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0 -4px 30px rgba(197, 160, 83, 0.08);
backdrop-filter: blur(12px);
z-index: 999;
transition: all 0.3s ease;
}

.mbn-item {
flex: 1;
text-align: center;
position: relative;
color: #6e6041;
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
transition: color 0.3s ease, transform 0.3s ease;
}

.mbn-item .mbn-icon {
display: block;
font-size: 1.6rem;
line-height: 1;
transition: transform 0.3s ease;
}

.mbn-item.active,
.mbn-item:hover {
color: #c5a053;
}

.mbn-item.active .mbn-icon {
transform: translateY(-6px) scale(1.1);
text-shadow: 0 0 8px rgba(197, 160, 83, 0.4);
}

/* Moving gold glow underline */
.mobile-bottom-nav::before {
content: "";
position: absolute;
bottom: 0;
left: var(--highlight-pos, 0%);
width: 25%;
height: 3px;
background: linear-gradient(90deg, #c5a053, #e0c793);
border-radius: 2px;
transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating middle (Home) button */
.mbn-item:nth-child(1) {
position: relative;
background: #fff;
border-radius: 50%;
width: 68px;
height: 68px;
margin-top: -20px;
box-shadow: 0 6px 15px rgba(197, 160, 83, 0.25);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mbn-item:nth-child(1).active {
background: linear-gradient(135deg, #c5a053, #e0c793);
color: #fff;
box-shadow: 0 0 20px rgba(197, 160, 83, 0.5);
}

/* Badge */
#cartBottomBadge {
font-size: 0.7rem;
top: 10px;
right: 22px;
background: #c5a053;
color: #fff;
}

/* Hover animation */
.mbn-item:hover .mbn-icon {
transform: translateY(-4px) scale(1.05);
text-shadow: 0 0 10px rgba(197, 160, 83, 0.3);
}

/* Footer Futuristic Premium */
footer {
background: linear-gradient(145deg, #e6dcc1, #f8f5f0);
padding: 60px 0 30px;
text-align: center;
position: relative;
overflow: hidden;
color: #3a3222;
}
footer a {
color: #6e6041;
text-decoration: none;
font-weight: 500;
position: relative;
}
footer a::after {
content: "";
position: absolute;
left: 0;
bottom: -2px;
width: 0;
height: 2px;
background: linear-gradient(90deg, #c5a053, #e0c793);
transition: width 0.3s ease;
}
footer a:hover::after {
width: 100%;
}
footer a:hover {
color: #c5a053;
}
footer::before {
content: "";
position: absolute;
top: -100px;
left: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(197, 160, 83, 0.3), transparent);
animation: goldFloat 8s linear infinite alternate;
}
@keyframes goldFloat {
from { transform: translateY(0) rotate(0deg); opacity: 0.7; }
to { transform: translateY(30px) rotate(360deg); opacity: 1; }
}
.footer-bottom {
margin-top: 25px;
font-size: 0.9rem;
border-top: 1px solid rgba(197, 160, 83, 0.2);
padding-top: 15px;
color: #7c715d;
}