* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5efe6;
}

/* SITE HEADER */
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* TOP BAR */
.header-top-bar {
    background: #1a0a0a;
    /* Very dark brown/black from image */
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social .follow-label {
    font-weight: 500;
}

.header-social a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.header-social a:hover {
    opacity: 0.8;
}

/* MAIN HEADER */
.header-main {
    background: #fdf9f0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
/* ── Logo ── */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf9f0;
    padding: 12px 30px;
    min-width: 180px;
    position: relative;
}


.header-logo img {
    max-width: 120px;
    height: auto;
    display: block;
}

/* NAVIGATION */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    transition: all 0.3s;
    position: relative;
}

.header-menu li a:hover,
.header-menu li a.active {
    color: #5d0e0e;
    font-weight: bold;
}

.header-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5d0e0e;
    transition: width 0.3s;
}

.header-menu li a:hover::after,
.header-menu li a.active::after {
    width: 100%;
}

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-btn {
    background: linear-gradient(45deg, #fbe4ae, #ffd78a);
    /* Gold from image */
    color: #1a0a0a !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.phone-btn:hover {
    transform: translateY(-2px);
}

.cart-action-btn {
    position: relative;
    color: #333;
    font-size: 24px;
    text-decoration: none;
    /* display: flex; */
    /* align-items: center; */
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #d30000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fdf9f0;
}

/* MOBILE STYLES */
.header-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.header-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 991px) {

    .desktop-nav,
    .desktop-only {
        display: none !important;
    }

    .header-main .container {
        padding: 0 15px;
    }
}

.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-only {
        display: block !important;
    }
}

/* Pulse Animation for buttons if needed (retaining class name but updating style) */
.pulse-button {
    border: none;
    cursor: pointer;
    outline: none;
}