.topheaderpanel{
	position: Absolute;
	top: 4px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	left: 0;
	padding: 0 27px;
}

.payment_icons { 
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  align-items: flex-start; 
}
.payment_icons img { height:25px; }

@media (max-width:550px) {
   .payment_icons { position:relative;}
}

.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #283344;
            color: #fff;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            z-index: 1000;
            font-family: system-ui, -apple-system, sans-serif;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
        }
        .cookie-text {
            font-size: 14px;
            line-height: 1.4;
            flex: 2;
            min-width: 200px;
        }
        .cookie-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cookie-banner a {
            color: #8a7a61;
            text-decoration: none;
            font-size: 14px;
        }
        .cookie-banner a:hover {
            text-decoration: underline;
        }
        .cookie-btn {
            background: #8a7a61;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: opacity 0.2s;
            white-space: nowrap;
        }
        .cookie-btn:hover {
            opacity: 0.9;
        }
        @media (max-width: 600px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }
            .cookie-links {
                justify-content: center;
            }
        }