body {
    margin: 0;
    padding: 0;
}

.header {
    background: linear-gradient(135deg,
            #fff8e7 0%,
            #ffe4b3 15%,
            #ffd700 30%,
            #ff9500 50%,
            #e67e22 70%,
            #d35400 85%,
            #a04000 100%);
    background-size: 400% 400%;
    animation: goldenShift 20s ease infinite;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    border-bottom: none;
}

@keyframes goldenShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Header Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 248, 220, 0.9) 50%,
            rgba(255, 239, 186, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 15px 35px rgba(211, 84, 0, 0.25),
        0 5px 15px rgba(230, 126, 34, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(255, 215, 0, 0.2);
}

/* Logo Section */
/* Logo Section */
.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    height: 64px;
    padding: 6px;
    border-radius: 0;
    border: none;
    background: transparent;
    position: relative;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-logo::before {
    display: none;
}

.header-logo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: none;
}

.header-logo:hover::before {
    opacity: 0;
}

.header-logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    /* Keep image round if desired, or remove if user wants square */
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.header-logo-text {
    display: none;
    /* Already removed from HTML but keep CSS clean or remove entirely */
}

.header-logo-text-primary {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    background: linear-gradient(135deg,
            #d35400 0%,
            #e67e22 25%,
            #f39c12 50%,
            #e67e22 75%,
            #d35400 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.header-logo-text-secondary {
    font-family: 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #a0522d;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 248, 220, 0.6) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        inset 3px 3px 6px rgba(255, 255, 255, 0.9),
        inset -2px -2px 5px rgba(255, 200, 100, 0.15),
        4px 4px 12px rgba(211, 84, 0, 0.1);
}

.header-nav-item {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8b4513;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 25px;
    background: linear-gradient(145deg,
            #ffffff 0%,
            #fffaf0 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        4px 4px 10px rgba(211, 84, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 1),
        inset 1px 1px 2px rgba(255, 255, 255, 1);
}

.header-nav-item::before {
    content: '✦';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 8px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.header-nav-item:hover {
    color: #ffffff;
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 30%,
            #d35400 70%,
            #a04000 100%);
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        8px 8px 20px rgba(211, 84, 0, 0.35),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 4px rgba(160, 64, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-nav-item:hover::before {
    transform: translateY(-50%) scale(1);
    color: #ffffff;
}

.header-nav-item:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        4px 4px 10px rgba(211, 84, 0, 0.25),
        -2px -2px 8px rgba(255, 255, 255, 0.6),
        inset 3px 3px 6px rgba(160, 64, 0, 0.2);
}

/* Cart Button */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg,
            #ffffff 0%,
            #fffaf0 50%,
            #fff5e1 100%);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    box-shadow:
        8px 8px 20px rgba(211, 84, 0, 0.2),
        -4px -4px 12px rgba(255, 255, 255, 1),
        inset 2px 2px 4px rgba(255, 255, 255, 1),
        inset -2px -2px 4px rgba(255, 215, 0, 0.1);
}

.header-cart::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg,
            #ffd700 0%,
            #ff9500 50%,
            #ffd700 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.header-cart:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow:
        12px 12px 30px rgba(211, 84, 0, 0.3),
        -6px -6px 18px rgba(255, 255, 255, 1),
        inset 2px 2px 4px rgba(255, 255, 255, 1),
        inset -2px -2px 4px rgba(255, 215, 0, 0.2);
}

.header-cart:hover::before {
    opacity: 1;
    animation: cartGlow 1s ease-in-out infinite;
}

@keyframes cartGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.header-cart:active {
    transform: translateY(-2px) scale(1.05);
}

.header-cart-icon {
    width: 24px;
    height: 24px;
    color: #d35400;
    transition: all 0.4s ease;
    filter: drop-shadow(1px 1px 2px rgba(211, 84, 0, 0.3));
}

.header-cart:hover .header-cart-icon {
    color: #a04000;
    transform: scale(1.1);
}

.header-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    background: linear-gradient(135deg,
            #27ae60 0%,
            #2ecc71 50%,
            #27ae60 100%);
    border-radius: 13px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    line-height: 1;
    box-sizing: border-box;
    box-shadow:
        4px 4px 10px rgba(39, 174, 96, 0.4),
        -2px -2px 6px rgba(255, 255, 255, 0.8),
        inset 1px 1px 2px rgba(255, 255, 255, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }

    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Mobile Toggle Button */
.header-toggle {
    display: none;
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg,
            #ffffff 0%,
            #fffaf0 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        6px 6px 15px rgba(211, 84, 0, 0.15),
        -4px -4px 12px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 215, 0, 0.1);
}

.header-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 180, 0, 0.6);
    box-shadow:
        10px 10px 25px rgba(211, 84, 0, 0.2),
        -6px -6px 18px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 215, 0, 0.15);
}

.header-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg,
            #d35400 0%,
            #e67e22 50%,
            #f39c12 100%);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 1px 1px 3px rgba(211, 84, 0, 0.3);
}

.header-toggle-active {
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 50%,
            #d35400 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        8px 8px 20px rgba(211, 84, 0, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.header-toggle-active .header-toggle-bar {
    background: #ffffff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.header-toggle-active .header-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header-toggle-active .header-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-toggle-active .header-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.header-mobile {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100vh;
    background: linear-gradient(180deg,
            #fffef8 0%,
            #fff9e6 10%,
            #ffefd5 25%,
            #ffe4b5 40%,
            #ffd699 55%,
            #f5b041 70%,
            #e67e22 85%,
            #d35400 100%);
    z-index: 1002;
    padding: 130px 0 32px;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow:
        -20px 0 60px rgba(211, 84, 0, 0.3),
        inset 4px 0 15px rgba(255, 255, 255, 0.4);
}

/* Logo Container in Mobile Menu */
.header-mobile-logo-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 250, 240, 0.9) 60%,
            transparent 100%);
    padding-bottom: 40px;
    z-index: 10;
}

.header-mobile-logo {
    transform: scale(0.9);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.15);
}

.header-mobile::before {
    display: none;
}

.header-mobile::after {
    display: none;
}

.header-mobile.header-mobile-open {
    right: 0;
}

.header-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 14px;
}

.header-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #5d3a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 250, 240, 0.85) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        6px 6px 15px rgba(211, 84, 0, 0.15),
        -4px -4px 12px rgba(255, 255, 255, 0.6),
        inset 2px 2px 4px rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.header-mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 215, 0, 0.3) 50%,
            transparent 100%);
    transition: left 0.5s ease;
}

.header-mobile-link:hover {
    transform: translateX(10px) scale(1.02);
    color: #ffffff;
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 50%,
            #d35400 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        10px 10px 25px rgba(211, 84, 0, 0.3),
        -6px -6px 18px rgba(255, 255, 255, 0.5),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 215, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-mobile-link:hover::before {
    left: 100%;
}

.header-mobile-link:active {
    transform: translateX(5px) scale(1);
}

.header-mobile-link span {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header-mobile-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    background: linear-gradient(135deg,
            #27ae60 0%,
            #2ecc71 50%,
            #27ae60 100%);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        4px 4px 10px rgba(39, 174, 96, 0.35),
        inset 1px 1px 2px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

/* Backdrop */
.header-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(211, 84, 0, 0.4) 0%,
            rgba(230, 126, 34, 0.5) 30%,
            rgba(243, 156, 18, 0.4) 60%,
            rgba(255, 215, 0, 0.3) 100%);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-backdrop-show {
    opacity: 1;
    visibility: visible;
}

/* TABLET STYLES */
@media (max-width: 992px) {
    .header {
        padding: 10px 16px;
    }



    .header-container {
        height: 72px;
        padding: 0 1.5rem;
        border-radius: 40px;
    }

    .header-logo {
        height: 56px;
        padding: 5px;
        gap: 12px;
        border-radius: 0;
    }

    .header-logo::before {
        display: none;
    }

    .header-logo-image {
        border-radius: 50%;
    }

    .header-logo-text-primary {
        font-size: 19px;
    }

    .header-logo-text-secondary {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .header-right {
        gap: 12px;
    }

    .header-nav {
        gap: 4px;
        padding: 6px;
    }

    .header-nav-item {
        font-size: 12px;
        padding: 10px 18px;
        border-radius: 22px;
    }

    .header-nav-item::before {
        left: 8px;
        font-size: 7px;
    }

    .header-cart {
        width: 52px;
        height: 52px;
    }

    .header-cart-icon {
        width: 22px;
        height: 22px;
    }

    .header-cart-badge {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .header {
        padding: 8px 12px;
    }



    .header-container {
        height: 66px;
        padding: 0 1rem;
        border-radius: 35px;
    }

    .header-logo {
        height: 50px;
        padding: 4px;
        gap: 10px;
        border-radius: 0;
    }

    .header-logo::before {
        display: none;
    }

    .header-logo-image {
        border-width: 0;
    }

    .header-logo-text-primary {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .header-logo-text-secondary {
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .header-right {
        gap: 10px;
    }

    .header-nav {
        display: none;
    }

    .header-toggle {
        display: flex;
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .header-toggle-bar {
        width: 24px;
    }

    .header-cart {
        width: 50px;
        height: 50px;
    }

    .header-cart::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }

    .header-cart-icon {
        width: 22px;
        height: 22px;
    }

    .header-cart-badge {
        min-width: 22px;
        height: 22px;
        font-size: 11px;
        top: -4px;
        right: -4px;
        border-width: 2.5px;
    }

    .header-mobile {
        width: 320px;
        right: -320px;
        padding-top: 110px;
    }

    .header-mobile::before {
        height: 95px;
    }

    .header-mobile::after {
        top: 28px;
        font-size: 35px;
    }

    .header-mobile-nav {
        padding: 0 20px;
        gap: 12px;
    }

    .header-mobile-link {
        padding: 16px 20px;
        border-radius: 18px;
    }
}

/* SMALL MOBILE STYLES */
@media (max-width: 480px) {
    .header {
        padding: 6px 8px;
    }



    .header-container {
        height: 60px;
        padding: 0 0.8rem;
        border-radius: 30px;
        border-width: 1.5px;
        box-shadow:
            0 10px 25px rgba(211, 84, 0, 0.2),
            0 4px 10px rgba(230, 126, 34, 0.1),
            inset 0 1px 3px rgba(255, 255, 255, 1);
    }

    .header-logo {
        height: 44px;
        padding: 3px;
        gap: 8px;
        border-radius: 0;
    }

    .header-logo::before {
        display: none;
    }

    .header-logo-text-primary {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .header-logo-text-secondary {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .header-right {
        gap: 8px;
    }

    .header-cart {
        width: 44px;
        height: 44px;
        border-width: 2px;
        box-shadow:
            5px 5px 12px rgba(211, 84, 0, 0.15),
            -3px -3px 10px rgba(255, 255, 255, 1),
            inset 1px 1px 3px rgba(255, 255, 255, 1);
    }

    .header-cart-icon {
        width: 20px;
        height: 20px;
    }

    .header-cart-badge {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
        padding: 0 5px;
        top: -3px;
        right: -3px;
        border-width: 2px;
    }

    .header-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        gap: 5px;
        border-width: 1.5px;
    }

    .header-toggle-bar {
        width: 22px;
        height: 2.5px;
    }

    .header-mobile {
        width: 290px;
        right: -290px;
        padding-top: 100px;
    }

    .header-mobile::before {
        height: 85px;
    }

    .header-mobile::after {
        top: 22px;
        font-size: 32px;
    }

    .header-mobile-nav {
        padding: 0 16px;
        gap: 10px;
    }

    .header-mobile-link {
        padding: 14px 18px;
        font-size: 13px;
        border-radius: 16px;
        letter-spacing: 1px;
    }

    .header-mobile-badge {
        min-width: 26px;
        height: 26px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
    .header {
        padding: 5px 6px;
    }



    .header-container {
        height: 54px;
        padding: 0 0.6rem;
        border-radius: 28px;
    }

    .header-logo {
        height: 40px;
        padding: 3px;
        gap: 6px;
        border-radius: 0;
    }

    .header-logo::before {
        display: none;
    }

    .header-logo-text {
        display: none;
    }

    .header-logo-image {
        border-width: 0;
    }

    .header-cart {
        width: 40px;
        height: 40px;
    }

    .header-cart::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }

    .header-cart-icon {
        width: 18px;
        height: 18px;
    }

    .header-cart-badge {
        min-width: 18px;
        height: 18px;
        font-size: 9px;
        padding: 0 4px;
        top: -2px;
        right: -2px;
        border-width: 1.5px;
    }

    .header-toggle {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .header-toggle-bar {
        width: 20px;
        height: 2px;
    }

    .header-mobile {
        width: 260px;
        right: -260px;
        padding-top: 90px;
    }

    .header-mobile::before {
        height: 75px;
    }

    .header-mobile::after {
        top: 18px;
        font-size: 28px;
    }

    .header-mobile-nav {
        padding: 0 14px;
        gap: 8px;
    }

    .header-mobile-link {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 14px;
        letter-spacing: 0.8px;
    }

    .header-mobile-badge {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
        padding: 0 6px;
    }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 4px 8px;
    }



    .header-container {
        height: 50px;
    }

    .header-logo {
        height: 38px;
    }

    .header-mobile {
        padding-top: 65px;
    }

    .header-mobile::before {
        height: 55px;
    }

    .header-mobile::after {
        top: 10px;
        font-size: 25px;
    }

    .header-mobile-nav {
        gap: 6px;
    }

    .header-mobile-link {
        padding: 10px 16px;
    }
}

/* HIGH DPI SCREENS */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .header-logo-image {
        image-rendering: -webkit-optimize-contrast;
    }
}