/* ======================= HEADER & LOGO ======================= */

.site-header {
    background: linear-gradient(135deg, #98eb9e, #5fc16d); /* grøn gradient */
    border-bottom: 1px solid var(--border);
    padding: 15px 5px 15px 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* blød skygge for depth */
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: float 12s ease-in-out infinite alternate;
}

.site-header::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    100% { transform: translateY(30px) translateX(20px) rotate(360deg); }
}

.logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.logo-bar .logo {
    width: 777px;
    max-width: 90%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.logo-bar .logo {
    width: 777px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 0px auto; /* top 0, bottom 10px, auto horisontal */
}

/* ======================= SHOP / MENU BAR ======================= */
.shop-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 25px auto 25px auto;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-controls label {
    font-weight: bold;
    color: var(--text);
        font-size: 18px;  
}

.shop-controls select,
.shop-controls input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: white;
    font-size: 14px;
    transition: 0.2s;
}

.shop-controls select:focus,
.shop-controls input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Højre menu (Artikler, Kontakt) */
.main-menu {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-btn {
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: 0.25s;
    font-size: 18px;  
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.menu-btn, .enter-shop, .buy-now {
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
    transition: 0.3s, box-shadow 0.3s;
}

.menu-btn:hover, .enter-shop:hover, .buy-now:hover {
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.6);
}

/* ======================= FOOTER ======================= */
.site-footer {
    background: #f5f7fa;
    padding: 25px 10px;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: #555;
}
/* ======================= SHOP BAR ======================= */
.shop-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px; 
    border-radius: 14px;
    margin: 15px auto 15px auto;
    box-shadow: var(--shadow);
}

.shop-info-text {
    font-size: 18px;               /* lidt større tekst */
    font-weight: 600;              /* gør den fed */
    color: #1a3d5c;                /* mørk kontrastfarve */
    margin-left: 10px;             /* mere afstand fra shop-dropdown */
    padding: 6px 12px;             /* lille baggrundspadding for fremhævning */
    background-color: #FFFFFF;     /* lys grønlig baggrund for at skille sig ud */
    border-radius: 6px;            /* bløde kanter */
    display: inline-block;         /* så padding fungerer pænt */
}
