body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* GLASS NAV */
.glass-nav {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.7);
}

/* HERO */
.hero {
    height: 100vh;
}

/* SLIDER */
.slide-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
    animation: zoom 12s infinite alternate;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(22,26,58,0.8),rgba(142,42,143,0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: #fff;
}

/* TEXT */
.overlay h1 {
    font-size: 46px;
    font-weight: 600;
    max-width: 600px;
}
.overlay p {
    color: #ddd;
}

/* BUTTONS */
.btn-primary-custom {
    background: linear-gradient(135deg,#8E2A8F,#C77BA8);
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.btn-outline-custom {
    border: 2px solid;
    border-image: linear-gradient(135deg,#8E2A8F,#C77BA8) 1;
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
}

/* CART ICON */
.cart-icon {
    color: #8E2A8F;
    font-size: 18px;
    cursor: pointer;
}

/* LOGIN PANEL */
.login-panel {
    position: fixed;
    right: -100%;
    top: 0;
    width: 380px;
    height: 100%;
    background: #fff;
    transition: 0.4s;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-panel.active {
    right: 0;
}

/* BLUR BACKGROUND */
.blur-bg {
    overflow: hidden;
}
.blur-bg .hero {
    filter: blur(4px);
}

/* LOGIN CARD */
.login-card {
    width: 85%;
}

/* ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}
.delay { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 25px;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 50%;
}

/* MOBILE */
@media(max-width:768px){
    .overlay {
        padding: 20px;
    }
    .overlay h1 {
        font-size: 28px;
    }
}


/* PANEL */
.cart-panel {
    position: fixed;
    right: -100%;
    top: 0;
    width: 350px;
    height: 100%;
    background: #fff;
    transition: 0.4s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

/* HEADER */
.cart-header {
    padding: 15px;
    background: #161A3A;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

/* ITEMS */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 10px;
}

/* FOOTER */
.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.footer {
    background: #161A3A;
    color: #ccc;
    padding: 50px 0;
}

.footer h6 {
    color: #fff;
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

.small-text {
    font-size: 14px;
}

.social i {
    margin-right: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 20px;
}

/* mobile */
@media(max-width:768px){
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* OVERLAY */
.login-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}
.login-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* PANEL */
.login-panel{
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    height: 100%;
    background: linear-gradient(135deg,#ffffff,#f5f6fa);
    transition: 0.4s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-panel.active{
    right: 0;
}

/* CARD */
.login-card{
    width: 85%;
}

/* HEADER */
.login-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.login-header span{
    cursor: pointer;
    font-size: 22px;
}

/* INPUT */
.login-card input{
    border-radius: 10px;
}

/* PASSWORD ICON */
.password-box{
    position: relative;
}
.password-box i{
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
    .login-panel{
        width: 100%;
    }
}