/* ==========================================================================
   1. BASE (Ren og klassisk)
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: #ffffff; 
    color: #222222; 
    font-family: 'Inter', sans-serif; 
    font-size: 15px; 
    line-height: 1.8;
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #000000;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

img { width: 100%; height: auto; display: block; object-fit: cover; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
    border-bottom: 1px solid #eeeeee;
    padding: 30px 0;
    background: #fff;
    position: relative;
    z-index: 100;
}

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

.logo-box {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a {
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    color: #555;
    text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
    color: #000;
    border-bottom: 1px solid #000;
}

/* ==========================================================================
   3. DELTE KOMPONENTER (Rammer, pile, sidetitler)
   ========================================================================== */
.image-frame {
    padding: 15px;
    border: 1px solid #eaeaea;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: block; 
}

.image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

.link-arrow:hover {
    gap: 12px;
    opacity: 0.6;
}

.page-header {
    text-align: center;
    padding: 80px 0 60px;
    max-width: 700px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    color: #555;
    font-size: 1.05rem;
}

/* ==========================================================================
   4. FORSIDE (Index)
   ========================================================================== */
.welcome-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 80px 0;
    align-items: center;
}

.welcome-section .image-frame img {
    aspect-ratio: 3/4; 
}

.welcome-text h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-text h1 span {
    font-style: italic;
    color: #555;
}

.welcome-text p {
    margin-bottom: 20px;
    color: #444;
}

.services-section {
    padding: 60px 0 100px;
    border-top: 1px solid #eeeeee;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.service-card {
    position: relative;
}

.service-card .image-frame {
    margin-bottom: 25px;
    padding: 10px; 
}

.service-card .image-frame img {
    aspect-ratio: 4/5;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 2px;
}

.service-card:hover .service-link {
    border-bottom-color: #000;
}

/* ==========================================================================
   5. SERVICES (Underside)
   ========================================================================== */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-row.reverse {
    direction: rtl;
}
.service-row.reverse .service-text {
    direction: ltr; /* Sørger for at teksten læses ltr selvom boksen vendes */
}

.service-row .image-frame img {
    aspect-ratio: 4/5;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-text p {
    color: #444;
    margin-bottom: 30px;
}

.detail-list {
    list-style: none;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #333;
}

.detail-list li span {
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: #888;
}

/* ==========================================================================
   6. OM OS (Underside)
   ========================================================================== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.about-section .image-frame img {
    aspect-ratio: 3/4;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 25px;
    color: #444;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #999;
    margin-top: 30px;
    display: block;
}

.timeline-section {
    max-width: 800px;
    margin: 0 auto 120px;
}

.timeline-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

.timeline-list {
    list-style: none;
    border-top: 1px solid #000;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #eaeaea;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
}

.timeline-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   7. KONTAKT (Underside)
   ========================================================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p.intro-text {
    color: #444;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    margin-bottom: 50px;
}

.info-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    display: inline-block;
}

.info-block p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-section .image-frame img {
    aspect-ratio: 16/9; 
}

.contact-form-wrapper {
    background: #fcfcfc;
    padding: 50px;
    border: 1px solid #eaeaea;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #000;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-control:focus {
    border-bottom-color: #000;
}

.form-control::placeholder {
    color: #bbb;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.btn-submit {
    display: inline-block;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
footer {
    background-color: #0c0c0c; 
    color: #ffffff;
    padding: 80px 0 50px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-list { list-style: none; }
.contact-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #bbbbbb;
}
.contact-list strong { color: #ffffff; font-weight: normal; margin-right: 10px; }

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 25px;
}

.footer-nav { list-style: none; font-size: 0.9rem; color: #bbbbbb; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 30px;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   9. RESPONSIVT DESIGN (Mobil & Tablet)
   ========================================================================== */
@media (max-width: 800px) {
    /* Skjuler den normale menu og viser hamburger-ikon i stedet */
    .nav-links { display: none; }
    .hamburger-btn { display: block !important; }

    .header-inner { gap: 20px; }
    
    /* Fælles */
    .page-header h1 { font-size: 2.8rem; }
    
    /* Forside */
    .welcome-section { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .services-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Services underside */
    .service-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
    .service-row.reverse { direction: ltr; } 
    
    /* Om os underside */
    .about-section { grid-template-columns: 1fr; gap: 40px; }
    .timeline-item { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
    
    /* Kontakt underside */
    .contact-section { grid-template-columns: 1fr; gap: 60px; }
    .info-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-form-wrapper { padding: 30px; }
    
    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ==========================================================================
   10. WEBSHOP & PRODUKTER
   ========================================================================== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
    padding-bottom: 120px;
    align-items: stretch;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.shop-product-card .image-frame {
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 25px;
    max-width: 260px; 
    width: 100%; 
    margin-left: auto; 
    margin-right: auto;
}

.shop-product-card .image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.shop-product-card .image-frame img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.shop-product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.shop-product-info .product-desc {
    flex-grow: 1; 
    color: #666; 
    font-size: 0.9rem; 
    margin-bottom: 15px;
}

/* Tvinger Shopify-knapperne til at fylde 100% bredde */
[id^="shopify-btn-"], [id^="shopify-modal-btn-"] { width: 100%; display: block; min-height: 45px; }
.custom-modal iframe, .shop-product-card iframe { min-width: 100% !important; min-height: 45px !important; }


/* ==========================================================================
   11. MODALS / POP-UP BOKSE (Til produktdetaljer)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%);
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #eaeaea;
    padding: 50px;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 2rem; color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.modal-content-grid .image-frame {
    padding: 10px;
}

@media (max-width: 800px) {
    .shop-grid { grid-template-columns: 1fr; gap: 60px; }
    .custom-modal { padding: 40px 25px; width: 95%; }
    .modal-content-grid { grid-template-columns: 1fr; gap: 30px; }
}


/* ==========================================================================
   12. MOBIL MENU (Fuldskærm)
   ========================================================================== */
.hamburger-btn {
    display: none; /* Skjult på desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #ffffff;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.close-mobile-btn {
    position: absolute;
    top: 30px; right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    transition: transform 0.3s ease;
}

.close-mobile-btn:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-link:hover {
    opacity: 0.5;
}


/* ==========================================================================
   13. COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0; 
}

.cookie-btn:hover {
    background: transparent;
    color: #fff;
}

.cookie-reject-btn {
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
}

@media (max-width: 800px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
}


/* ==========================================================================
   14. WEBSHOP KATEGORI FILTER
   ========================================================================== */
.shop-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.shop-filters a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-filters a:hover, .shop-filters a.active {
    color: #000;
}

.shop-filters a.active::after {
    content: '';
    position: absolute;
    bottom: -21px; 
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

/* ==========================================================================
   15. CALL TO ACTION POP-UP (Bottom Right)
   ========================================================================== */
.cta-popup {
    position: fixed;
    bottom: 30px;
    right: -400px; /* Skjult uden for skærmen fra start */
    width: 340px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    padding: 25px;
    z-index: 1500;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cta-popup.show {
    right: 30px; /* Får boksen til at glide ind på skærmen */
}

.close-cta-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.close-cta-btn:hover {
    color: #000;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Gør den sorte knap lidt mindre i denne lille popup */
.cta-btn {
    padding: 8px 15px;
    font-size: 0.7rem;
    width: auto;
    display: inline-block;
    margin-top: 0;
}

/* Tilpasning til mobiltelefoner */
@media (max-width: 800px) {
    .cta-popup {
        width: calc(100% - 40px);
        bottom: 20px;
        right: -100%;
    }
    .cta-popup.show {
        right: 20px;
    }
}
/* ==========================================================================
   16. PROCES-SEKTION (Forside)
   ========================================================================== */
.process-section {
    padding: 80px 0 100px;
    border-top: 1px solid #eeeeee;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.process-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.process-header p {
    color: #777;
    font-size: 0.95rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step .image-frame {
    margin-bottom: 20px;
    padding: 8px;
}

.process-step .image-frame img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.process-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: #bbb;
    display: block;
    margin-bottom: 6px;
}

.process-step h4 {
    font-size: 1.05rem;
}

/* ==========================================================================
   17. INSTAGRAM GRID (Forside)
   ========================================================================== */
.insta-section {
    padding: 70px 0 100px;
    border-top: 1px solid #eeeeee;
}

.insta-header {
    text-align: center;
    margin-bottom: 40px;
}

.insta-handle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.insta-header h2 {
    font-size: 2rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.insta-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.insta-item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insta-item:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 800px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .insta-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==========================================================================
   18. BETALINGSIKONER I FOOTER
   ========================================================================== */
.footer-payment {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pay-icon {
    display: inline-flex;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.pay-icon:hover { opacity: 1; }

/* ==========================================================================
   19. OPDATERET COOKIE BANNER (GDPR)
   ========================================================================== */
.cookie-banner {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 20px 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.cookie-text p {
    margin: 0;
    font-size: 0.82rem;
    color: #bbb;
    line-height: 1.5;
}

.cookie-text a {
    color: #ddd;
    text-decoration: underline;
}

@media (max-width: 800px) {
    .cookie-banner {
        flex-direction: column !important;
        text-align: left;
        gap: 15px;
    }
}

/* ==========================================================================
   20. RABATKODE-POPUP STYLING
   ========================================================================== */
.cta-popup--discount {
    border-top: 3px solid #000;
}

.cta-discount-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.cta-code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    padding: 8px 12px;
}

.cta-code {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    flex: 1;
}

.cta-copy-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 5px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.cta-copy-btn:hover { background: #333; }

/* ==========================================================================
   21. SCROLL-ANIMATIONER (Fade-in ved scroll)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   22. SMOOTH SCROLL & FOKUS-RING
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

/* ==========================================================================
   23. FILTER TOM-TILSTAND (Shop)
   ========================================================================== */
.filter-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #bbb;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    display: none;
}

/* ==========================================================================
   24. IMAGE LAZY LOAD FADE
   ========================================================================== */
img[loading="lazy"] {
    transition: opacity 0.4s ease;
}
