/* ===== GLOBAL ===== */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: #f5f2ef;
}

/* ===== HEADER ===== */
.site-header {
    width: 100%;
    background: #8B0000; /* dark red luxury */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    color: #fff;
    font-weight: bold;
}

/* ===== NAV INNER ===== */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-wrap: wrap;
    min-height: 130px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    flex-shrink: 0;
}

.luxury-logo-circle {
    width: 300px;  /* wider */
    height: 100px; /* shorter */
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #FFD700; /* gold trim */
}

.luxury-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* fully visible */
    transform: scale(1.1); /* slightly zoomed */
}

/* ===== TITLE + SLOGAN ===== */
.luxury-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.luxury-title {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: visible;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-family: 'Montserrat', sans-serif;
}

.luxury-slogan {
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700; /* dark yellow gold */
    margin-top: 5px;
    white-space: nowrap;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    font-family: 'Roboto', sans-serif;
}

/* ===== NAVIGATION RIGHT ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    padding: 10px 24px;
    background: linear-gradient(145deg, #FFD700, #DAA520);
    color: #8B0000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 5px 0 #B8860B, 0 5px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(145deg, #FFFACD, #FFD700);
    box-shadow: 0 7px 0 #B8860B, 0 7px 15px rgba(0,0,0,0.4);
}

/* NAV ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    font-size: 22px;
    position: relative;
    cursor: pointer;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
}

.lang-toggle {
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* ===== HAMBURGER ===== */
#hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

#hamburger .bar {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
#hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #8B0000;
    text-align: center;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-link {
    padding: 14px 0;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    transform: scale(1.05);
}

/* HERO & PARTICLES */
.header-bg-anim,
.luxury-particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .luxury-logo-circle { width: 280px; height: 90px; }
    .luxury-title { font-size: 1.8rem; }
    .luxury-slogan { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    #hamburger { display: flex; }
    .luxury-logo-circle { width: 240px; height: 70px; }
    .luxury-title { font-size: 1.5rem; }
    .luxury-slogan { font-size: 0.8rem; }
    .nav-inner { padding: 10px 15px; min-height: 90px; }
}
