/*!
Theme Name:         scg_shop
Theme URI:          https://shop.scgroup.dk
Author:             Checkmate Digitalt Bureau
Author URI:         https://checkmate.dk
Version:            1.0.0
Tested up to:       6.7              
Requires at least:  6.5
Requires PHP:       8.0
License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:        scg-shop
Tags:               custom-background, custom-logo, custom-menu, e-commerce, featured-images, threaded-comments, translation-ready, woocommerce

WooCommerce support er deklareret i functions.php med add_theme_support('woocommerce');
*/

/*--------------------------------------------------------------
# TABLE OF CONTENTS
--------------------------------------------------------------
# Normalize & Box Model
# Typography & Base Elements
# Links & Forms
# Layout & Containers
# WordPress Core / Accessibility
# WooCommerce General
# WooCommerce – Products / Shop
# WooCommerce – Cart & Checkout
# WooCommerce – Buttons & Notices
# Custom Components & Utilities
# Responsive & Media Queries
# Dark Mode & Prefers
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize & Box Model
--------------------------------------------------------------*/
/* normalize.css bliver enqueued via functions.php */ 

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

/* Forhindrer indhold i at gå ud over viewport bredden */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Sikrer at alle containere holder sig inden for viewport */
.container,
.flex-wrapper,
.flex-block,
.hero-content,
[class*="block_hero"],
main,
section,
article {
    max-width: 100%;
    overflow-x: hidden;
}

/*--------------------------------------------------------------
# Flex Block Spacing System
--------------------------------------------------------------*/

/* Default padding and colors for flex blocks */
.flex-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #111111; /* Default text color - can be overridden via inline style from settings */
}

/* Ensure text elements inherit color from flex-block */
.flex-block h1,
.flex-block h2,
.flex-block h3,
.flex-block h4,
.flex-block h5,
.flex-block h6,
.flex-block p,
.flex-block span,
.flex-block blockquote,
.flex-block cite,
.flex-block figcaption {
    color: inherit;
}

/* Padding Top Classes */
.flex-block.pt-none { padding-top: 0 !important; }
.flex-block.pt-rem1 { padding-top: 1rem !important; }
.flex-block.pt-rem2 { padding-top: 2rem !important; }
.flex-block.pt-rem4 { padding-top: 4rem !important; }
.flex-block.pt-rem6 { padding-top: 6rem !important; }
.flex-block.pt-rem8 { padding-top: 8rem !important; }
.flex-block.pt-rem10 { padding-top: 10rem !important; }
.flex-block.pt-rem12 { padding-top: 12rem !important; }
.flex-block.pt-rem16 { padding-top: 16rem !important; }
.flex-block.pt-rem20 { padding-top: 20rem !important; }

/* Padding Bottom Classes */
.flex-block.pb-none { padding-bottom: 0 !important; }
.flex-block.pb-rem1 { padding-bottom: 1rem !important; }
.flex-block.pb-rem2 { padding-bottom: 2rem !important; }
.flex-block.pb-rem4 { padding-bottom: 4rem !important; }
.flex-block.pb-rem6 { padding-bottom: 6rem !important; }
.flex-block.pb-rem8 { padding-bottom: 8rem !important; }
.flex-block.pb-rem10 { padding-bottom: 10rem !important; }
.flex-block.pb-rem12 { padding-bottom: 12rem !important; }
.flex-block.pb-rem16 { padding-bottom: 16rem !important; }
.flex-block.pb-rem20 { padding-bottom: 20rem !important; }

/* Padding Left Classes */
.flex-block.pl-none { padding-left: 0 !important; }
.flex-block.pl-rem1 { padding-left: 1rem !important; }
.flex-block.pl-rem2 { padding-left: 2rem !important; }
.flex-block.pl-rem4 { padding-left: 4rem !important; }
.flex-block.pl-rem6 { padding-left: 6rem !important; }
.flex-block.pl-rem8 { padding-left: 8rem !important; }
.flex-block.pl-rem10 { padding-left: 10rem !important; }
.flex-block.pl-rem12 { padding-left: 12rem !important; }
.flex-block.pl-rem16 { padding-left: 16rem !important; }
.flex-block.pl-rem20 { padding-left: 20rem !important; }

/* Padding Right Classes */
.flex-block.pr-none { padding-right: 0 !important; }
.flex-block.pr-rem1 { padding-right: 1rem !important; }
.flex-block.pr-rem2 { padding-right: 2rem !important; }
.flex-block.pr-rem4 { padding-right: 4rem !important; }
.flex-block.pr-rem6 { padding-right: 6rem !important; }
.flex-block.pr-rem8 { padding-right: 8rem !important; }
.flex-block.pr-rem10 { padding-right: 10rem !important; }
.flex-block.pr-rem12 { padding-right: 12rem !important; }
.flex-block.pr-rem16 { padding-right: 16rem !important; }
.flex-block.pr-rem20 { padding-right: 20rem !important; }

/* Margin Top Classes */
.flex-block.mt-none { margin-top: 0 !important; }
.flex-block.mt-rem1 { margin-top: 1rem !important; }
.flex-block.mt-rem2 { margin-top: 2rem !important; }
.flex-block.mt-rem4 { margin-top: 4rem !important; }
.flex-block.mt-rem6 { margin-top: 6rem !important; }
.flex-block.mt-rem8 { margin-top: 8rem !important; }
.flex-block.mt-rem10 { margin-top: 10rem !important; }
.flex-block.mt-rem12 { margin-top: 12rem !important; }
.flex-block.mt-rem16 { margin-top: 16rem !important; }
.flex-block.mt-rem20 { margin-top: 20rem !important; }

/* Margin Bottom Classes */
.flex-block.mb-none { margin-bottom: 0 !important; }
.flex-block.mb-rem1 { margin-bottom: 1rem !important; }
.flex-block.mb-rem2 { margin-bottom: 2rem !important; }
.flex-block.mb-rem4 { margin-bottom: 4rem !important; }
.flex-block.mb-rem6 { margin-bottom: 6rem !important; }
.flex-block.mb-rem8 { margin-bottom: 8rem !important; }
.flex-block.mb-rem10 { margin-bottom: 10rem !important; }
.flex-block.mb-rem12 { margin-bottom: 12rem !important; }
.flex-block.mb-rem16 { margin-bottom: 16rem !important; }
.flex-block.mb-rem20 { margin-bottom: 20rem !important; }

/* Margin Left Classes */
.flex-block.ml-none { margin-left: 0 !important; }
.flex-block.ml-rem1 { margin-left: 1rem !important; }
.flex-block.ml-rem2 { margin-left: 2rem !important; }
.flex-block.ml-rem4 { margin-left: 4rem !important; }
.flex-block.ml-rem6 { margin-left: 6rem !important; }
.flex-block.ml-rem8 { margin-left: 8rem !important; }
.flex-block.ml-rem10 { margin-left: 10rem !important; }
.flex-block.ml-rem12 { margin-left: 12rem !important; }
.flex-block.ml-rem16 { margin-left: 16rem !important; }
.flex-block.ml-rem20 { margin-left: 20rem !important; }

/* Margin Right Classes */
.flex-block.mr-none { margin-right: 0 !important; }
.flex-block.mr-rem1 { margin-right: 1rem !important; }
.flex-block.mr-rem2 { margin-right: 2rem !important; }
.flex-block.mr-rem4 { margin-right: 4rem !important; }
.flex-block.mr-rem6 { margin-right: 6rem !important; }
.flex-block.mr-rem8 { margin-right: 8rem !important; }
.flex-block.mr-rem10 { margin-right: 10rem !important; }
.flex-block.mr-rem12 { margin-right: 12rem !important; }
.flex-block.mr-rem16 { margin-right: 16rem !important; }
.flex-block.mr-rem20 { margin-right: 20rem !important; }

/* Hero block has no default padding - it manages its own */
.flex-block.block_hero {
    padding-top: 0;
    padding-bottom: 0;
    color: #FFFFFF !important; /* Hero text is always white */
}

/*--------------------------------------------------------------
# Hero Block
--------------------------------------------------------------*/
.hero-block {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Sizes */
.hero-block.hero-full_screen {
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-block.hero-half_screen {
    min-height: 50vh;
    min-height: 50dvh;
}

.hero-block.hero-small {
    min-height: 40vh;
    min-height: 40dvh;
}

/* Hero Background */
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video,
.hero-background .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 2;
}

/* Hero Content - Centered */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content .container {
    max-width: 1000px;
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Hero Header */
.hero-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

@media (min-width: 768px) {
    .hero-header {
        font-size: 112px;
    }
}

@media (min-width: 1200px) {
    .hero-header {
        font-size: 144px;
    }
}

/* Hero Subheader */
.hero-subheader {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 16px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subheader {
        font-size: 20px;
    }
}

/* Hero Text */
.hero-text {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 32px;
    opacity: 0.85;
}

.hero-text p {
    margin: 0 0 16px 0;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    border-radius: 62px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Global Button Styles
--------------------------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

/* Button Sizes */
.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-medium {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Button Type: Solid (default - sort baggrund, hvid tekst) */
.btn-solid {
    background: #111111;
    color: #FFFFFF;
    border: 1px solid #111111;
}

.btn-solid:hover {
    background: transparent;
    color: #111111;
    text-decoration: none;
    border: 1px solid #111111;
}

/* Button Type: Hollow (transparent baggrund, sort border) */
.btn-hollow,
.btn-outline {
    background: transparent;
    color: #111111;
    border: 2px solid #111111;
}

.btn-hollow:hover,
.btn-outline:hover {
    background: #111111;
    color: #FFFFFF;
    text-decoration: none;
}

/* Button Type: Transparent (ingen border, kun tekst) */
.btn-transparent {
    background: transparent;
    color: #111111;
    border: 2px solid transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn-transparent:hover {
    color: #111111;
    text-decoration: underline;
}

/* Hero context - hvide knapper på mørk baggrund */
.hero-buttons .btn-solid {
    background: #FFFFFF;
    color: #111111;
    border: 2px solid #FFFFFF;
}

.hero-buttons .btn-solid:hover {
    background: transparent;
    color: #FFFFFF;
}

.hero-buttons .btn-hollow,
.hero-buttons .btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.hero-buttons .btn-hollow:hover,
.hero-buttons .btn-outline:hover {
    background: #FFFFFF;
    color: #111111;
}

.hero-buttons .btn-transparent {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid transparent;
}

.hero-buttons .btn-transparent:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Dark background context */
.bg-dark .btn-solid {
    background: #FFFFFF;
    color: #111111;
    border: 2px solid #FFFFFF;
}

.bg-dark .btn-solid:hover {
    background: transparent;
    color: #FFFFFF;
}

.bg-dark .btn-hollow,
.bg-dark .btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.bg-dark .btn-hollow:hover,
.bg-dark .btn-outline:hover {
    background: #FFFFFF;
    color: #111111;
}

.bg-dark .btn-transparent {
    color: #FFFFFF;
}

.bg-dark .btn-transparent:hover {
    color: #FFFFFF;
}

/*--------------------------------------------------------------
# Typography & Base Elements
--------------------------------------------------------------*/
:root {
    --color-brand:        #111111;
    --color-primary:      #111111;
    --color-primary-hover:#262626;
    --color-white:        #f9f9f9;
    --color-light-gray:   #f9f9f9;
    --color-black:        #000000;
}

body {
    margin: 0;
    color: #1a1a1a;
    background-color: #f5f4f2;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

h1, .h1 { font-size: 3.5rem; line-height: 1.05; margin-bottom: 1.25rem; font-family: "freight-big-pro", Georgia, serif; font-weight: 300; }
h2, .h2 { font-size: 2.8rem; line-height: 1.1;  margin-bottom: 1.25rem; font-family: "freight-big-pro", Georgia, serif; font-weight: 300; }
h3, .h3 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1rem;    font-family: "freight-big-pro", Georgia, serif; font-weight: 300; }

@media (min-width: 960px) {
    h1, .h1 { font-size: 5rem; }
    h2, .h2 { font-size: 3.8125rem; }
    h3, .h3 { font-size: 2.9375rem; }
}

p, li, address { margin-bottom: 1.25rem; }

a { color: var(--color-brand); text-decoration: none; }
a:hover,
a:focus { color: #333; text-decoration: underline; }

/*--------------------------------------------------------------
# Links & Forms
--------------------------------------------------------------*/
button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;
    border: none;
    border-radius: 0.5rem;
    background: var(--color-brand);
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    transition: background 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
    background: var(--color-primary-hover);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: white;
    color: #111;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(17,17,17,0.15);
}

/*--------------------------------------------------------------
# Layout & Containers
--------------------------------------------------------------*/
.container,
.car-container,
.cm-contained {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1040px) {
    .container, .car-container, .cm-contained {
        max-width: 1040px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .container, .car-container, .cm-contained { max-width: 1200px; }
}

@media (min-width: 1480px) {
    .container, .car-container, .cm-contained { max-width: 1480px; }
}

/*--------------------------------------------------------------
# Header & Navigation (Bootstrap)
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

/* Når admin bar er synlig - skub header ned */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Når hero er første element - navbar ovenpå hero */
body.has-hero-first .site-header {
    background: transparent;
}

body.has-hero-first .site-header .scg-navbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border 0.3s ease;
}

body.has-hero-first .scg-navbar .navbar-nav .nav-link {
    transition: color 0.3s ease;
}

body.has-hero-first .scg-brands-toggle,
body.has-hero-first .scg-cart-btn {
    transition: all 0.3s ease;
}

/* Hero går helt til toppen */
body.has-hero-first .flex-wrapper,
body.has-hero-first .site-content,
body.has-hero-first #content,
body.has-hero-first #primary,
body.has-hero-first main {
    margin-top: 0;
    padding-top: 0;
}

body.has-hero-first .flex-wrapper > .flex-block:first-child,
body.has-hero-first .flex-wrapper > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Standard sider uden hero først - tilføj padding til body */
body:not(.has-hero-first) {
    padding-top: 70px;
}

/* Sider uden hero - navbar med hvid baggrund og sort tekst */
body:not(.has-hero-first) .scg-navbar {
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body:not(.has-hero-first) .scg-navbar .navbar-nav .nav-link {
    color: #111111;
}

body:not(.has-hero-first) .scg-navbar .navbar-nav .nav-link:hover,
body:not(.has-hero-first) .scg-navbar .navbar-nav .nav-link:focus {
    color: #000000;
}

body:not(.has-hero-first) .scg-brands-toggle {
    color: #111111;
}

body:not(.has-hero-first) .scg-brands-toggle:hover {
    color: #000000;
}

/* Navbar scrolled state - when scrolled past hero on hero pages */
body.navbar-scrolled .scg-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

body.navbar-scrolled .scg-navbar .navbar-nav .nav-link {
    color: #111111;
}

body.navbar-scrolled .scg-navbar .navbar-nav .nav-link:hover,
body.navbar-scrolled .scg-navbar .navbar-nav .nav-link:focus {
    color: #000000;
}

body.navbar-scrolled .scg-brands-toggle {
    color: #111111;
}

body.navbar-scrolled .scg-brands-toggle:hover {
    color: #000000;
}

body.navbar-scrolled .scg-cart-btn {
    color: #111111;
    border-color: #111111;
    background: transparent;
}

body.navbar-scrolled .scg-cart-btn:hover {
    background: #111111;
    color: #FFFFFF;
}

body.navbar-scrolled .scg-logo img {
    filter: none;
}

body:not(.has-hero-first) .scg-cart-btn {
    color: #111111;
    border: 1px solid #111111;
}

body:not(.has-hero-first) .scg-cart-btn:hover,
body:not(.has-hero-first) .scg-cart-btn:focus {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
    text-decoration: none;
}

/* SCG Navbar - Custom Bootstrap styling */
.scg-navbar {
    padding: 0.75rem 0;
    min-height: 70px;
    position: relative;
    z-index: 9999;
}

/* Brands Toggle Button */
.scg-brands-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: color 0.2s ease;
}

.scg-brands-toggle:hover {
    color: #FFFFFF;
    background: transparent;
}

.scg-brands-toggle svg {
    transition: transform 0.3s ease;
}

.scg-brands-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Toggle text states */
.scg-brands-toggle .scg-brands-toggle-closed {
    display: inline !important;
}

.scg-brands-toggle .scg-brands-toggle-open {
    display: none !important;
}

.scg-brands-toggle[aria-expanded="true"] .scg-brands-toggle-closed {
    display: none !important;
}

.scg-brands-toggle[aria-expanded="true"] .scg-brands-toggle-open {
    display: inline !important;
}

/* Brands Mega Dropdown - Fullscreen */
.scg-brands-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.scg-brands-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Baggrundsbillede */
.scg-brands-overlay-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
}

.scg-brands-overlay-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mørkt overlay over baggrund */
.scg-brands-overlay-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Content wrapper */
.scg-brands-overlay-content {
    position: relative;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: auto;
    padding: 150px 20px 40px;
    z-index: 30;
}

@media (min-width: 768px) {
    .scg-brands-overlay-content {
        padding: 150px 40px 60px;
    }
}

/* Brands Navigation */
.scg-brands-nav {
    position: relative;
    width: 100%;
    z-index: 1;
}

.scg-brands-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scg-brands-list li {
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Staggered animation for menu items */
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.scg-brands-overlay.is-open .scg-brands-list li:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.scg-brands-list li a {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 640px) {
    .scg-brands-list li a {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .scg-brands-list li a {
        font-size: 48px;
    }
    
    .scg-brands-list {
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .scg-brands-list li a {
        font-size: 64px;
    }
    
    .scg-brands-list {
        gap: 12px;
    }
}

.scg-brands-list li a:hover {
    opacity: 0.7;
    transform: translateX(10px);
    text-decoration: none;
}

/* Body lock when overlay is open */
body.brands-overlay-open {
    overflow: hidden;
}

/* Når mega menu (brands) er åben: fjern hvid baggrund og box-shadow fra navbar */
body.brands-overlay-open .scg-navbar {
    background: transparent !important;
    box-shadow: none !important;
}

/* Når mega menu er åben: first level menupunkter (og brands-knap, kurv) hvide */
body.brands-overlay-open .scg-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.brands-overlay-open .scg-navbar .navbar-nav .nav-link:hover,
body.brands-overlay-open .scg-navbar .navbar-nav .nav-link:focus {
    color: #FFFFFF !important;
}

body.brands-overlay-open .scg-navbar .navbar-nav .nav-link.active {
    color: #FFFFFF !important;
}

body.brands-overlay-open .scg-brands-toggle {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.brands-overlay-open .scg-brands-toggle:hover {
    color: #FFFFFF !important;
}

body.brands-overlay-open .scg-cart-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
}

body.brands-overlay-open .scg-cart-btn:hover,
body.brands-overlay-open .scg-cart-btn:focus {
    background: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #111111 !important;
}

/* Logo - Centreret */
.scg-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 !important;
    margin: 0 !important;
}

.scg-logo img {
    width: 47px !important;
    height: auto !important;
    max-width: 47px !important;
    display: block;
}

.scg-navbar .navbar-brand.scg-logo .site-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Primary Navigation Links */
.scg-navbar .navbar-nav {
    gap: 0.25rem;
}

.scg-navbar .navbar-nav .nav-item {
    margin-bottom: 0;
}

.scg-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.scg-navbar .navbar-nav .nav-link:hover,
.scg-navbar .navbar-nav .nav-link:focus {
    color: white;
    text-decoration: none;
}

.scg-navbar .navbar-nav .nav-link.active {
    color: white;
}

/* Dim siblings on hover */
.scg-navbar .navbar-nav:hover .nav-item .nav-link {
    opacity: 0.5;
}

.scg-navbar .navbar-nav .nav-item:hover .nav-link {
    opacity: 1;
}

/* Cart Button */
.scg-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.scg-cart-btn:hover,
.scg-cart-btn:focus {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #111111;
    text-decoration: none;
}

.scg-cart-btn .cart-icon {
    display: flex;
    align-items: center;
}

.scg-cart-btn .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #111;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
}

/* Hamburger Toggle */
.scg-navbar .navbar-toggler {
    border: none;
    padding: 0.25rem;
    background: transparent;
}

.scg-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.scg-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu Collapse */
@media (max-width: 991.98px) {
    .scg-navbar .navbar-brand.scg-logo {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .scg-navbar .navbar-brand.scg-logo img {
        width: 40px !important;
        max-width: 40px !important;
    }
    
    .navbar-brands {
        display: none !important;
    }
    
    .scg-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 0.5rem 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 0;
        z-index: 1000;
    }
    
    .scg-navbar .navbar-nav .nav-link {
        color: var(--color-brand);
        padding: 0.75rem 1.5rem;
    }
    
    .scg-navbar .navbar-nav .nav-link:hover,
    .scg-navbar .navbar-nav .nav-link:focus {
        background-color: #f5f5f5;
        color: var(--color-brand);
    }
    
    .scg-cart-btn .cart-text {
        display: none;
    }
    
    .scg-cart-btn {
        padding: 0.5rem 0.65rem;
    }
}

@media (max-width: 575.98px) {
    .scg-navbar {
        padding: 0.5rem 0;
    }
    
    .scg-navbar .navbar-brand.scg-logo img {
        width: 38px !important;
        max-width: 38px !important;
    }
}

/* Grid utilities – brug disse klasser på WooCommerce shop / archive sider */
.grid-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px)  { .grid-container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .grid-container { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
@media (min-width: 1280px) { .grid-container { grid-template-columns: repeat(5, 1fr); } }

/*--------------------------------------------------------------
# WooCommerce General
--------------------------------------------------------------*/
.woocommerce,
.woocommerce-page {
    --wc-primary: #111111;
    --wc-primary-hover: #262626;
}

/* Force all WooCommerce price elements to be black */
.woocommerce .price,
.woocommerce .price .amount,
.woocommerce .price .woocommerce-Price-amount,
.woocommerce-page .price,
.woocommerce-page .price .amount,
.woocommerce-page .price .woocommerce-Price-amount,
.woocommerce .woocommerce-Price-amount.amount,
.woocommerce-page .woocommerce-Price-amount.amount {
    color: #111111 !important;
}

/* Stock status styling */
.woocommerce .stock,
.woocommerce-page .stock,
.single-product .stock,
p.stock,
.stock.in-stock,
.stock.out-of-stock {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.6) !important;
}

.stock.out-of-stock {
    color: #FF3333 !important;
}

/* Fjern unødvendige WooCommerce margins */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin: 0 0 1.5rem;
}

/* ========================================
   SHOP HERO (Featured Image on Shop Page)
   ======================================== */

.shop-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* Shop hero goes to top when has featured image */
body.has-shop-hero .shop-hero {
    margin-top: -70px;
    padding-top: 100px;
    min-height: 450px;
}

body.admin-bar.has-shop-hero .shop-hero {
    margin-top: -102px;
    padding-top: 132px;
}

/* Cart page: samme hero-layout som shop (post-type-archive-product) */
body.has-cart-hero .site-main {
    padding-top: 0;
}

body.has-cart-hero .shop-hero {
    margin-top: -70px;
    padding-top: 100px;
    min-height: 450px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

body.admin-bar.has-cart-hero .shop-hero {
    margin-top: -102px;
    padding-top: 132px;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* Title and Breadcrumb - centered in area below navbar */
.shop-hero-content {
    position: absolute;
    top: 70px; /* Start below navbar */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.admin-bar .shop-hero-content {
    top: 102px; /* Navbar + admin bar */
}

.shop-hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Breadcrumb - above title */
.shop-hero-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shop-hero-breadcrumb-nav a,
.shop-hero-breadcrumb-nav span {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 12px;
    color: #FFFFFF !important;
}

.shop-hero-breadcrumb-nav a {
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.shop-hero-breadcrumb-nav a:hover {
    opacity: 1;
    color: #FFFFFF !important;
}

.shop-hero-breadcrumb-nav .breadcrumb-separator {
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.shop-hero-breadcrumb-nav .breadcrumb-current {
    opacity: 1;
}

.shop-hero-title {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .shop-hero {
        min-height: 320px;
    }
    
    .shop-hero-title {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .shop-hero-title {
        font-size: 72px;
    }
}

/* WooCommerce Products Grid - 12 grid system */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
    margin: 0 0 80px 0;
    padding: 0;
}

/* Remove clearfix pseudo-elements that interfere with CSS Grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* Override WooCommerce default column styling - we use CSS Grid instead */
.woocommerce ul.products[class*=columns-] li.product,
.woocommerce-page ul.products[class*=columns-] li.product {
    width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

/* Tablet: 3 kolonner */
@media (min-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Desktop: 4 kolonner */
@media (min-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* Produktkort – typisk styling */
.woocommerce ul.products li.product {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Kvadratiske produktbilleder med hvid baggrund */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product > a > img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 30px;
    box-sizing: border-box;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #111111;
    margin: 0.75rem 1rem 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.woocommerce ul.products li.product .price {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #111111 !important;
    margin: 0 1rem 0.75rem;
    padding: 0;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price .amount {
    font-size: inherit;
    font-weight: inherit;
    color: #111111 !important;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product .price del {
    color: #999;
    font-weight: 400;
    margin-right: 0.5em;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

/* Moms tekst i produktkort - på samme linje som pris */
.woocommerce ul.products li.product .price small.includes_tax,
.woocommerce ul.products li.product .price .woocommerce-price-suffix {
    display: inline;
    font-size: 0.75rem;
    font-weight: 400;
    color: #111111 !important;
    opacity: 0.7;
    margin-left: 4px;
    padding: 0;
}

/* Add to cart knap i produktkort */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
    margin: auto 1rem 1rem 1rem;
    text-align: center;
}

/* Knapper – Add to cart, etc. */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.wc-forward,
.woocommerce a.button.wc-backward {
    background: var(--color-brand);
    color: white;
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.wc-forward:hover,
.woocommerce a.button.wc-backward:hover {
    background: #222;
}

/* Knapper inde i notices – samme look som øvrige knapper (overstyr link-styling) */
.woocommerce .woocommerce-message a.button,
.woocommerce .woocommerce-info a.button,
.woocommerce .woocommerce-error a.button {
    background: var(--color-brand) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    font-weight: 300;
}

.woocommerce .woocommerce-message a.button:hover,
.woocommerce .woocommerce-info a.button:hover,
.woocommerce .woocommerce-error a.button:hover {
    background: #222 !important;
    color: white !important;
    text-decoration: none !important;
}

/* Notices / Messages – matcher resten af designet */
.woocommerce-notices-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

/* Fjern blå border/outline omkring beskeder og wrapper (fx browser focus-ring) */
.woocommerce-notices-wrapper,
.woocommerce-notices-wrapper:focus,
.woocommerce-notices-wrapper:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

@media (min-width: 1040px) {
    .woocommerce-notices-wrapper {
        max-width: 1040px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .woocommerce-notices-wrapper {
        max-width: 1200px;
    }
}

@media (min-width: 1480px) {
    .woocommerce-notices-wrapper {
        max-width: 1480px;
    }
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(17, 17, 17, 0.1);
    list-style: none;
}

.woocommerce .woocommerce-message:last-child,
.woocommerce .woocommerce-info:last-child,
.woocommerce .woocommerce-error:last-child {
    margin-bottom: 0;
}

/* Plads til WooCommerce's ::before-ikon (left: 1.5em + ikonbredde + mellemrum) */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    padding-left: 3rem;
}

/* Success (fx "Produkt tilføjet til kurv") */
.woocommerce .woocommerce-message {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: #f0f7f0;
    color: #1a3d1a;
    border-color: rgba(26, 61, 26, 0.2);
    outline: none;
    box-shadow: none;
}

.woocommerce .woocommerce-message:focus,
.woocommerce .woocommerce-message:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Samme for info- og fejlbeskeder – ingen blå border */
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    outline: none !important;
    box-shadow: none !important;
}

.woocommerce .woocommerce-info:focus,
.woocommerce .woocommerce-info:focus-visible,
.woocommerce .woocommerce-error:focus,
.woocommerce .woocommerce-error:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ::before-ikon vertikalt centreret */
.woocommerce .woocommerce-message::before {
    top: 50%;
    transform: translateY(-50%);
}

/* Knap til højre i beskeden */
.woocommerce .woocommerce-message a.button {
    margin-left: auto;
}

.woocommerce .woocommerce-message a {
    color: #1a3d1a;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce .woocommerce-message a:hover {
    color: #111111;
}

/* Info / notice */
.woocommerce .woocommerce-info {
    background: #FFFFFF;
    color: #111111;
    border-color: rgba(17, 17, 17, 0.1);
}

.woocommerce .woocommerce-info a {
    color: var(--color-brand);
    text-decoration: underline;
}

.woocommerce .woocommerce-info a:hover {
    color: #262626;
}

/* Error */
.woocommerce .woocommerce-error {
    background: #fdf2f2;
    color: #5c1a1a;
    border-color: rgba(92, 26, 26, 0.2);
    padding-left: 3rem;
}

.woocommerce .woocommerce-error li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce .woocommerce-error li + li {
    margin-top: 0.5rem;
}

.woocommerce .woocommerce-error a {
    color: #5c1a1a;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce .woocommerce-error a:hover {
    color: #111111;
}

/* woocommerce-notice klasser (fx tak-siden, order-received) */
.woocommerce .woocommerce-notice--success,
.woocommerce .woocommerce-notice--error {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/*--------------------------------------------------------------
# WooCommerce – Single Product Page
--------------------------------------------------------------*/
/* Page background */
.single-product {
    background-color: #F9F9F9;
}

.single-product .site-main {
    padding: 0;
}

/* Override WooCommerce default float styles for Bootstrap grid */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.single-product div.product div.images,
.single-product #content div.product div.images {
    float: none !important;
    width: auto !important;
    margin: 0;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary,
.single-product div.product div.summary,
.single-product #content div.product div.summary {
    float: none !important;
    margin: 0;
    clear: none !important;
}

/* Bootstrap grid system for single product */
.single-product .type-product {
    width: 100%;
    clear: both;
    padding: 40px 0 60px;
}

@media (min-width: 992px) {
    .single-product .type-product {
        padding: 60px 0 100px;
    }
}

/* Samme container-bredde som resten af sitet (1040/1200/1480) */
.single-product .type-product .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1040px) {
    .single-product .type-product .container {
        max-width: 1040px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .single-product .type-product .container {
        max-width: 1200px;
    }
}

@media (min-width: 1480px) {
    .single-product .type-product .container {
        max-width: 1480px;
    }
}

/* Venstre side: Produktbillede med gallery */
.single-product .woocommerce-product-gallery-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .single-product .woocommerce-product-gallery-wrapper {
        margin-bottom: 0;
        padding-right: 2rem;
    }
}

/* Image container */
.single-product .woocommerce-product-gallery-wrapper div.images,
.single-product .woocommerce-product-gallery-wrapper .woocommerce-product-gallery {
    position: relative;
    float: none !important;
    margin: 0;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

/* Ensure gallery images are visible and clickable */
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    overflow: visible;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
    display: block;
    cursor: zoom-in;
}

/* WooCommerce Lightbox / PhotoSwipe support */
.pswp {
    z-index: 999999 !important;
}

.pswp__img,
.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
    border-radius: 20px;
    background: #000000;
}

.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    padding: 0;
}

.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger:hover {
    background: #FFFFFF;
}

/* Custom zoom icon */
.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111111' d='m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hide default icon */
.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger img,
.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger .emoji,
.woocommerce-product-gallery--with-images .woocommerce-product-gallery__trigger span {
    display: none !important;
}

/* Main image - let FlexSlider handle the layout */
.single-product .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.single-product .woocommerce-product-gallery__image {
    margin: 0;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* When no FlexSlider (single image) */
.single-product .woocommerce-product-gallery--without-images .woocommerce-product-gallery__image img {
    border-radius: 20px;
}

/* SCG Custom Product Gallery */
.scg-product-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Main gallery slider */
.scg-product-gallery-container .woocommerce-product-gallery {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    overflow: hidden;
}

.scg-product-gallery-container .woocommerce-product-gallery__image,
.scg-product-gallery-container .woocommerce-product-gallery__image a {
    display: block;
    cursor: zoom-in;
    background: #FFFFFF;
}

.scg-product-gallery-container .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    background: #FFFFFF;
}

.scg-product-gallery-container .flex-viewport {
    background: #FFFFFF;
}

/* Thumbnails navigation */
.scg-product-thumbnails {
    display: flex;
    gap: 12px;
    padding: 0;
    overflow-x: auto;
    flex-wrap: wrap;
}

.scg-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.scg-thumbnail:hover,
.scg-thumbnail.active {
    opacity: 1;
    border-color: #111111;
}

.scg-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide default FlexSlider thumbnails */
.scg-product-gallery-container .flex-control-thumbs {
    display: none !important;
}

/* Gallery thumbnails (fallback for FlexSlider) */
.single-product .woocommerce-product-gallery__thumbnails,
.single-product .flex-control-thumbnails {
    display: flex;
    gap: 12px;
    margin: 16px;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    flex-wrap: wrap;
}

.single-product .woocommerce-product-gallery__thumbnails li,
.single-product .flex-control-thumbnails li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.single-product .woocommerce-product-gallery__thumbnails a,
.single-product .flex-control-thumbnails a {
    display: block;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    opacity: 0.6;
    background: #F3F3F3;
}

.single-product .woocommerce-product-gallery__thumbnails a:hover,
.single-product .woocommerce-product-gallery__thumbnails a.flex-active,
.single-product .flex-control-thumbnails a:hover,
.single-product .flex-control-thumbnails a.flex-active {
    opacity: 1;
    border-color: #111111;
}

.single-product .woocommerce-product-gallery__thumbnails img,
.single-product .flex-control-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FlexSlider support */
.single-product .flex-viewport {
    margin-bottom: 0;
    border-radius: 20px;
}

.single-product .woocommerce-product-gallery.images {
    overflow: visible;
}

/* Ensure thumbnails are clickable */
.single-product .flex-control-thumbs {
    display: flex;
    gap: 12px;
    margin: 16px;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    flex-wrap: wrap;
}

.single-product .flex-control-thumbs li {
    margin: 0 !important;
    padding: 0;
    flex-shrink: 0;
    width: 80px !important;
    height: 80px;
}

.single-product .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid transparent;
    border-radius: 8px;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.single-product .flex-control-thumbs li img:hover,
.single-product .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: #111111;
}

/* WooCommerce gallery navigation arrows */
.single-product .flex-direction-nav {
    display: none;
}

/* Højre side: Produktinfo */
.single-product .summary.entry-summary {
    float: none;
    clear: none;
    margin: 0;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

@media (min-width: 992px) {
    .single-product .summary.entry-summary {
        padding: 40px;
    }
}

/* Produkt titel styling */
.single-product .summary .product_title {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0 0 16px 0;
    color: #111111;
}

@media (min-width: 768px) {
    .single-product .summary .product_title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .single-product .summary .product_title {
        font-size: 47px;
    }
}

/* Pris styling */
.single-product .summary .price,
.single-product .summary .price .woocommerce-Price-amount,
.single-product .summary .price .amount,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product .summary .price {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #111111 !important;
    margin: 0 0 24px 0;
}

@media (min-width: 768px) {
    .single-product .summary .price,
    .single-product .summary .price .woocommerce-Price-amount,
    .single-product .summary .price .amount {
        font-size: 18px;
    }
}

.single-product .summary .price del,
.single-product .summary .price del .woocommerce-Price-amount,
.single-product .summary .price del .amount {
    font-size: 18px;
    color: rgba(17, 17, 17, 0.4) !important;
    margin-right: 12px;
    text-decoration: line-through;
}

.single-product .summary .price ins,
.single-product .summary .price ins .woocommerce-Price-amount,
.single-product .summary .price ins .amount {
    text-decoration: none;
    color: #111111 !important;
}

/* Produktbeskrivelse */
.single-product .summary .woocommerce-product-details__short-description {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.6);
    margin: 0 0 32px 0;
}

.single-product .summary .woocommerce-product-details__short-description p {
    margin-bottom: 16px;
}

.single-product .summary .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

/* Add to cart form */
.single-product .summary form.cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .single-product .summary form.cart {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

/* Quantity input styling */
.single-product .summary .quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F3F3F3;
    border-radius: 62px;
    padding: 12px 20px;
    margin: 0;
}

.single-product .summary .quantity input[type="number"] {
    width: 40px;
    text-align: center;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    border: none;
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.single-product .summary .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .summary .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Quantity +/- Buttons on single product */
.single-product .summary .quantity .scg-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111111;
    transition: opacity 0.2s ease;
}

.single-product .summary .quantity .scg-qty-btn:hover {
    opacity: 0.6;
    background: transparent;
}

.single-product .summary .quantity .scg-qty-btn svg {
    width: 20px;
    height: 20px;
}

/* Add to cart knap styling */
.single-product .summary .single_add_to_cart_button,
.single-product .summary .button.alt,
.single-product .summary button[type="submit"].single_add_to_cart_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #111111;
    color: #FFFFFF;
    border: none;
    border-radius: 62px;
    padding: 16px 32px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

@media (min-width: 576px) {
    .single-product .summary .single_add_to_cart_button,
    .single-product .summary .button.alt,
    .single-product .summary button[type="submit"].single_add_to_cart_button {
        flex: none;
    }
}

.single-product .summary .single_add_to_cart_button::after,
.single-product .summary .button.alt::after,
.single-product .summary button[type="submit"].single_add_to_cart_button::after {
    content: none;
}

.single-product .summary .single_add_to_cart_button:hover,
.single-product .summary .button.alt:hover,
.single-product .summary button[type="submit"].single_add_to_cart_button:hover {
    background: #262626;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Divider line */
.single-product .summary .product_meta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
}

.single-product .summary .product_meta > span {
    display: block;
    margin-bottom: 8px;
}

.single-product .summary .product_meta > span:last-child {
    margin-bottom: 0;
}

.single-product .summary .product_meta a {
    color: #111111;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.single-product .summary .product_meta a:hover {
    opacity: 0.6;
    text-decoration: none;
}

/* Rating styling */
.single-product .summary .woocommerce-product-rating {
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-product .summary .star-rating {
    color: #111111;
    font-size: 14px;
}

.single-product .summary .woocommerce-review-link {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
}

/* Variations styling */
.single-product .summary .variations {
    margin-bottom: 24px;
    width: 100%;
    border-collapse: collapse;
}

.single-product .summary .variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.single-product .summary .variations tr:last-child {
    margin-bottom: 0;
}

.single-product .summary .variations th,
.single-product .summary .variations td {
    padding: 0;
    display: block;
}

.single-product .summary .variations label {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
    margin-bottom: 8px;
    display: block;
}

.single-product .summary .variations select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 62px;
    background: #FFFFFF;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #111111;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.single-product .summary .variations select:focus {
    outline: none;
    border-color: #111111;
}

.single-product .summary .reset_variations {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.single-product .summary .reset_variations:hover {
    color: #111111;
}

/* Single Product Breadcrumb – samme bredde som .container */
.single-product-breadcrumb {
    margin: 0 auto;
    padding: 24px 1.5rem;
}

@media (min-width: 1040px) {
    .single-product-breadcrumb {
        max-width: 1040px;
        padding: 32px 2rem;
    }
}

@media (min-width: 1200px) {
    .single-product-breadcrumb {
        max-width: 1200px;
    }
}

@media (min-width: 1480px) {
    .single-product-breadcrumb {
        max-width: 1480px;
    }
}

.single-product-breadcrumb .woocommerce-breadcrumb {
    margin: 0;
    padding: 0 !important;
}

/* Breadcrumbs styling */
.woocommerce-page .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding-top: 24px !important;
    background: transparent;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.6);
}

@media (min-width: 992px) {
    .woocommerce-breadcrumb {
        margin-top: 32px;
        padding: 32px 2rem 0;
    }
}

.woocommerce-breadcrumb a {
    color: rgba(17, 17, 17, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #111111;
    text-decoration: none;
}

/* Breadcrumb separator */
.woocommerce-breadcrumb > span:not(:last-child)::after,
.woocommerce-breadcrumb > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 10px;
    margin-left: 12px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='rgba(17,17,17,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Tabs og relaterede produkter */
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs,
.single-product div.product .woocommerce-tabs {
    clear: none !important;
}

.single-product .woocommerce-tabs {
    margin-top: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    padding: 32px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .single-product .woocommerce-tabs {
        margin-top: 60px;
        padding: 40px;
    }
}

.single-product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    margin: 0 0 24px 0;
    padding: 0 0 24px 0;
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 10px 20px;
    color: rgba(17, 17, 17, 0.6);
    text-decoration: none;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    background: #F3F3F3;
    border-radius: 62px;
    transition: all 0.2s ease;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #FFFFFF;
    background: #111111;
}

.single-product .woocommerce-Reviews {
    margin-top: 24px;
}

.single-product .woocommerce-Tabs-panel {
    padding: 0;
}

.single-product .woocommerce-Tabs-panel h2 {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 16px 0;
}

.single-product .woocommerce-Tabs-panel p {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.6);
}

/* Relaterede produkter */
.single-product .related.products,
.single-product .upsells.products {
    margin-top: 40px;
    padding: 0;
    background: transparent;
}

@media (min-width: 992px) {
    .single-product .related.products,
    .single-product .upsells.products {
        margin-top: 60px;
    }
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 24px 0;
    text-align: left;
}

@media (min-width: 768px) {
    .single-product .related.products > h2,
    .single-product .upsells.products > h2 {
        font-size: 40px;
        margin-bottom: 32px;
    }
}

/* Product cards in related/upsells */
.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-product .related.products ul.products li.product:hover,
.single-product .upsells.products ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.single-product .related.products ul.products li.product a img,
.single-product .upsells.products ul.products li.product a img {
    border-radius: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #111111;
    margin: 0.75rem 1rem 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.single-product .related.products ul.products li.product .price,
.single-product .upsells.products ul.products li.product .price {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #111111 !important;
    margin: 0 1rem 0.75rem;
    padding: 0;
}

.single-product .related.products ul.products li.product .price del,
.single-product .upsells.products ul.products li.product .price del {
    color: #999;
    font-weight: 400;
    margin-right: 0.5em;
}

.single-product .related.products ul.products li.product .price ins,
.single-product .upsells.products ul.products li.product .price ins {
    text-decoration: none;
}

.single-product .related.products ul.products li.product .price .woocommerce-price-suffix,
.single-product .upsells.products ul.products li.product .price .woocommerce-price-suffix {
    display: inline;
    font-size: 0.75rem;
    font-weight: 400;
    color: #111111 !important;
    opacity: 0.7;
    margin-left: 4px;
}

.single-product .related.products ul.products li.product .button,
.single-product .upsells.products ul.products li.product .button {
    margin: auto 1rem 1rem 1rem;
    text-align: center;
}

.single-product .related.products ul.products li.product .button:hover,
.single-product .upsells.products ul.products li.product .button:hover {
    background: #111111;
    color: #FFFFFF;
}

/* Responsive adjustments */

/*--------------------------------------------------------------
# Custom Components & Utilities (dine tidligere regler – udvalgte)
--------------------------------------------------------------*/
.hover\:bg-brand:hover,
.group:hover .group-hover\:bg-brand {
    background-color: var(--color-brand);
}

.hover\:bg-white:hover,
.child\:bg-white > * {
    background-color: var(--color-white);
}

.hover\:text-black:hover { color: var(--color-black); }
.hover\:text-white:hover { color: white; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }

.focus\:outline-none:focus,
.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

/* Child utilities – ofte brugt i menuer, produktkort osv. */
.child\:font-bold > *   { font-weight: 700; }
.child\:px-6 > *        { padding-left: 1.5rem; padding-right: 1.5rem; }
.child\:w-full > *      { width: 100%; }

/*--------------------------------------------------------------
# Responsive & Media Queries
--------------------------------------------------------------*/
@media (min-width: 640px) {
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .sm\:gap-4       { gap: 1rem; }
    .sm\:p-8         { padding: 2rem; }
    .sm\:text-4xl    { font-size: 3.8125rem; line-height: 1; }
}

@media (min-width: 960px) {
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:p-16        { padding: 4rem; }
    .md\:text-5xl    { font-size: 5rem; line-height: 1; }
}

@media (min-width: 1280px) {
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
    .lg\:gap-10      { gap: 2.5rem; }
    .lg\:text-6xl    { font-size: 8.125rem; line-height: 1; }
}

/* Dark mode – valgfri */
@media (prefers-color-scheme: dark) {
    body {
        background: #111;
        color: #f9f9f9;
    }
    .dark\:text-white { color: #f9f9f9; }
}

/*--------------------------------------------------------------
# WooCommerce – Cart Page (Figma Design)
--------------------------------------------------------------*/
.scg-cart-page {
    background-color: #F9F9F9;
    padding: 60px 0 80px;
    min-height: 100vh;
}

/* Kurvsiden: .container skal bruge samme bredde som resten af sitet (overstyr evt. Bootstrap) */
.scg-cart-page .container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 0;
}

@media (min-width: 1040px) {
    .scg-cart-page .container {
        max-width: 1040px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .scg-cart-page .container {
        max-width: 1200px;
    }
}

@media (min-width: 1480px) {
    .scg-cart-page .container {
        max-width: 1480px;
    }
}

/* På kurvsiden: notices-wrapper samme bredde som resten af indholdet (den er allerede inde i .container) */
.scg-cart-page .woocommerce-notices-wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Tom kurv: luft mellem besked og return-to-shop knap */
.scg-cart-page .wc-empty-cart-message {
    margin-bottom: 1.5rem;
}

.scg-cart-page .return-to-shop {
    margin-top: 1.5rem;
}

/* Tom kurv: ::before = kurv-ikon som i navbar (ikke WooCommerce standard-ikon) */
.scg-cart-page .wc-empty-cart-message .woocommerce-info.cart-empty::before {
    content: '';
    font-family: unset;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6V20C3 20.5304 3.21071 21.0391 3.58579 21.4142C3.96086 21.7893 4.46957 22 5 22H19C19.5304 22 20.0391 21.7893 20.4142 21.4142C20.7893 21.0391 21 20.5304 21 20V6L18 2H6Z'/%3E%3Cpath d='M3 6H21'/%3E%3Cpath d='M16 10C16 11.0609 15.5786 12.0783 14.8284 12.8284C14.0783 13.5786 13.0609 14 12 14C10.9391 14 9.92172 13.5786 9.17157 12.8284C8.42143 12.0783 8 11.0609 8 10'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
}

.scg-cart-page .woocommerce-Price-amount,
.scg-cart-page .amount {
    font-size: 16px;
}

@media (min-width: 992px) {
    .scg-cart-page {
        padding: 100px 0 140px;
    }
}

/* Breadcrumb */
.scg-cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.scg-cart-breadcrumb a {
    color: rgba(17, 17, 17, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.scg-cart-breadcrumb a:hover {
    color: #111111;
    text-decoration: none;
}

.scg-cart-breadcrumb .separator {
    color: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
}

.scg-cart-breadcrumb .current {
    color: #111111;
    font-weight: 400;
}

/* Page Title */
.scg-cart-title {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 24px 0;
}

@media (min-width: 768px) {
    .scg-cart-title {
        font-size: 47px;
    }
}

/* Cart Grid Layout */
.scg-cart-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .scg-cart-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Cart Items Wrapper (Left Column) */
.scg-cart-items-wrapper {
    flex: 1;
    min-width: 0;
}

@media (min-width: 992px) {
    .scg-cart-items-wrapper {
        flex: 1.4;
    }
}

.scg-cart-items-wrapper .woocommerce-cart-form {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
}

/* Cart Items Container */
.scg-cart-items {
    display: flex;
    flex-direction: column;
}

/* Individual Cart Item */
.scg-cart-item {
    display: flex;
    gap: 16px;
    padding: 0;
    align-items: flex-start;
}

/* Item Divider */
.scg-cart-item-divider {
    height: 1px;
    background: rgba(17, 17, 17, 0.1);
    margin: 24px 0;
}

/* Product Thumbnail */
.scg-cart-item-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: #F3F3F3;
    border-radius: 8.66px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .scg-cart-item-thumbnail {
        width: 124px;
        height: 124px;
    }
}

.scg-cart-item-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.scg-cart-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Details */
.scg-cart-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

@media (min-width: 768px) {
    .scg-cart-item-details {
        min-height: 118px;
    }
}

/* Info Row (Name, Attributes, Price) */
.scg-cart-item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.scg-cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Product Name */
.scg-cart-item-name {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0;
}

@media (min-width: 768px) {
    .scg-cart-item-name {
        font-size: 27px;
    }
}

.scg-cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.scg-cart-item-name a:hover {
    text-decoration: underline;
}

/* Product Attributes */
.scg-cart-item-attributes {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.scg-cart-item-attribute {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #111111;
}

@media (min-width: 768px) {
    .scg-cart-item-attribute {
        font-size: 16px;
    }
}

/* Product Price */
.scg-cart-item-price {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #111111;
    text-align: right;
    white-space: nowrap;
}

.scg-cart-item-price .woocommerce-Price-amount,
.scg-cart-item-price .amount {
    font-size: 16px;
}

/* Actions Row */
.scg-cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

/* Remove Button */
.scg-cart-item-remove {
    order: 2;
}

@media (min-width: 768px) {
    .scg-cart-item-remove {
        order: 1;
    }
}

.scg-remove-btn {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(17, 17, 17, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.scg-remove-btn:hover {
    color: #111111;
    text-decoration: none;
}

/* Quantity Selector */
.scg-cart-item-quantity {
    order: 1;
}

@media (min-width: 768px) {
    .scg-cart-item-quantity {
        order: 2;
    }
}

.scg-cart-item-quantity .quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F3F3F3;
    border-radius: 62px;
    padding: 10px 20px;
}

.scg-cart-item-quantity .quantity input[type="number"] {
    width: 40px;
    text-align: center;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #111111;
    border: none;
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.scg-cart-item-quantity .quantity input[type="number"]::-webkit-inner-spin-button,
.scg-cart-item-quantity .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Quantity +/- Buttons */
.scg-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111111;
    transition: opacity 0.2s ease;
}

.scg-qty-btn:hover {
    opacity: 0.6;
    background: transparent;
}

.scg-qty-btn svg {
    width: 20px;
    height: 20px;
}

/* Cart Actions (Update Button) */
.scg-cart-actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    display: flex;
    justify-content: flex-end;
}

.scg-update-cart-btn,
.woocommerce .scg-update-cart-btn,
.woocommerce button.scg-update-cart-btn {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111 !important;
    background: transparent !important;
    border: 1px solid #111111 !important;
    border-radius: 62px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scg-update-cart-btn:hover {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111 !important;
}

.scg-update-cart-btn:disabled {
    color: rgba(17, 17, 17, 0.3);
    border-color: rgba(17, 17, 17, 0.3) !important;
    cursor: not-allowed;
    background: transparent;
    opacity: 1;
}

.scg-update-cart-btn:disabled:hover {
    background: transparent;
    color: rgba(17, 17, 17, 0.3);
    border-color: rgba(17, 17, 17, 0.3) !important;
}

/* Order Summary Wrapper (Right Column) */
.scg-order-summary-wrapper {
    width: 100%;
}

@media (min-width: 992px) {
    .scg-order-summary-wrapper {
        width: 380px;
        flex-shrink: 0;
    }
}

@media (min-width: 1200px) {
    .scg-order-summary-wrapper {
        width: 420px;
    }
}

/* Order Summary Box */
.scg-order-summary {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scg-order-summary-title {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0;
}

@media (min-width: 768px) {
    .scg-order-summary-title {
        font-size: 27px;
    }
}

/* Summary Lines */
.scg-order-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scg-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.scg-summary-label {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.6);
}

.scg-summary-value {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #111111;
    text-align: right;
}

/* Discount Value (Red) */
.scg-summary-discount .scg-discount-value,
.scg-summary-discount .scg-summary-value {
    color: #FF3333;
}

/* Summary Divider */
.scg-summary-divider {
    height: 1px;
    background: rgba(17, 17, 17, 0.1);
}

/* Tax Note (above total) */
.scg-summary-tax-note {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.6);
    text-align: right;
    margin-bottom: 8px;
}

/* Total Line */
.scg-summary-total .scg-summary-label,
.scg-summary-total .scg-summary-value {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #111111;
}

/* Hide default WooCommerce tax note in total */
.scg-summary-total .includes_tax {
    display: none;
}

/* Promo Code Toggle Button */
.scg-promo-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.6);
    cursor: pointer;
    transition: color 0.2s ease;
}

.scg-promo-toggle:hover {
    color: #111111;
    background: transparent;
}

.scg-promo-toggle svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.scg-promo-toggle[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

/* Promo Code Wrapper (animated) */
.scg-promo-code-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.scg-promo-code-wrapper.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 12px;
}

.scg-promo-code-wrapper > .scg-promo-code {
    overflow: hidden;
}

/* Promo Code Section */
.scg-promo-code {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.scg-promo-input {
    flex: 1;
    background: #F3F3F3;
    border: none;
    border-radius: 62px;
    padding: 12px 16px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #111111;
    width: auto;
}

.scg-promo-input::placeholder {
    color: rgba(17, 17, 17, 0.4);
}

.scg-promo-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}

.scg-promo-apply-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid #111111 !important;
    border-radius: 62px;
    padding: 12px 16px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 90px;
}

.scg-promo-apply-btn:hover {
    background: #111111;
    color: #FFFFFF;
}

/* Checkout Button */
.scg-checkout-btn-wrapper {
    width: 100%;
}

.scg-checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: #111111;
    border-radius: 62px;
    padding: 16px 54px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.scg-checkout-btn:hover {
    background: #262626;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-1px);
}

.scg-checkout-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.scg-checkout-btn:hover svg {
    transform: translateX(4px);
}

/* Hide default WooCommerce cart elements */
.woocommerce-page .cart-collaterals,
.woocommerce-page .cart_totals {
    display: none;
}

/* Responsive adjustments for cart page */
@media (max-width: 767px) {
    .scg-cart-items-wrapper .woocommerce-cart-form {
        padding: 16px;
    }
    
    .scg-order-summary {
        padding: 16px;
    }
    
    .scg-cart-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .scg-cart-item-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .scg-cart-item-details {
        width: 100%;
    }
    
    .scg-cart-item-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .scg-cart-item-price {
        text-align: left;
    }
    
    .scg-cart-item-actions {
        flex-direction: row;
        gap: 16px;
        margin-top: 16px;
    }
    
    .scg-checkout-btn {
        padding: 14px 24px;
    }
}

/*--------------------------------------------------------------
# Entry Header Hero (Cart/Checkout with Featured Image)
--------------------------------------------------------------*/
.entry-header-hero {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

.entry-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/*--------------------------------------------------------------
# WooCommerce – Checkout Page
--------------------------------------------------------------*/
.scg-checkout-page {
    background-color: #F5F4F2;
    padding: 60px 0 80px;
    min-height: 100vh;
}

@media (min-width: 992px) {
    .scg-checkout-page {
        padding: 100px 0 140px;
    }
}

/* Breadcrumb */
.scg-checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.scg-checkout-breadcrumb a {
    color: rgba(17, 17, 17, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.scg-checkout-breadcrumb a:hover {
    color: #111111;
    text-decoration: none;
}

.scg-checkout-breadcrumb .separator {
    color: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
}

.scg-checkout-breadcrumb .current {
    color: #111111;
    font-weight: 400;
}

/* Page Title */
.scg-checkout-title {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 24px 0;
}

@media (min-width: 768px) {
    .scg-checkout-title {
        font-size: 47px;
    }
}

/* Checkout Grid Layout */
.scg-checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .scg-checkout-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Customer Details Wrapper (Left Column) */
.scg-checkout-details-wrapper {
    flex: 1;
    min-width: 0;
}

@media (min-width: 992px) {
    .scg-checkout-details-wrapper {
        flex: 1.4;
    }
}

.scg-customer-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Checkout Sections */
.scg-checkout-section {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    padding: 24px;
}

@media (min-width: 768px) {
    .scg-checkout-section {
        padding: 32px;
    }
}

/* Section Headings */
.scg-checkout-section h3,
.scg-checkout-section .woocommerce-billing-fields h3,
.scg-checkout-section .woocommerce-shipping-fields h3 {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 24px 0;
}

/* Form Fields */
.scg-checkout-page .woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.scg-checkout-page .woocommerce-checkout label {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 8px;
    display: block;
}

.scg-checkout-page .woocommerce-checkout .form-row label.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scg-checkout-page .woocommerce-checkout input[type="text"],
.scg-checkout-page .woocommerce-checkout input[type="email"],
.scg-checkout-page .woocommerce-checkout input[type="tel"],
.scg-checkout-page .woocommerce-checkout input[type="password"],
.scg-checkout-page .woocommerce-checkout textarea,
.scg-checkout-page .woocommerce-checkout select,
.scg-checkout-page .woocommerce-checkout .select2-container .select2-selection--single {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #111111;
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.2s ease;
}

.scg-checkout-page .woocommerce-checkout input:focus,
.scg-checkout-page .woocommerce-checkout textarea:focus,
.scg-checkout-page .woocommerce-checkout select:focus {
    outline: none;
    border-color: #111111;
}

.scg-checkout-page .woocommerce-checkout .select2-container .select2-selection--single {
    height: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.scg-checkout-page .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 1.5;
}

.scg-checkout-page .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 12px;
}

/* Required asterisk */
.scg-checkout-page .woocommerce-checkout .required {
    color: #111111;
}

/* Order Review Wrapper (Right Column) */
.scg-order-review-wrapper {
    width: 100%;
}

@media (min-width: 992px) {
    .scg-order-review-wrapper {
        width: 400px;
        flex-shrink: 0;
        position: sticky;
        top: 100px;
    }
}

.scg-order-review-box {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    padding: 24px;
}

@media (min-width: 768px) {
    .scg-order-review-box {
        padding: 32px;
    }
}

.scg-order-review-title {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 24px 0;
}

/* Order Review Table */
.scg-checkout-page .woocommerce-checkout-review-order-table {
    width: 100%;
    border: none;
    margin: 0 0 24px 0;
}

.scg-checkout-page .woocommerce-checkout-review-order-table thead {
    display: none;
}

.scg-checkout-page .woocommerce-checkout-review-order-table tbody tr,
.scg-checkout-page .woocommerce-checkout-review-order-table tfoot tr {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.scg-checkout-page .woocommerce-checkout-review-order-table tbody tr:last-child {
    border-bottom: none;
}

.scg-checkout-page .woocommerce-checkout-review-order-table td,
.scg-checkout-page .woocommerce-checkout-review-order-table th {
    padding: 12px 0;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #111111;
    border: none;
    background: transparent;
}

.scg-checkout-page .woocommerce-checkout-review-order-table .product-name {
    font-weight: 400;
}

.scg-checkout-page .woocommerce-checkout-review-order-table .product-total {
    text-align: right;
}

.scg-checkout-page .woocommerce-checkout-review-order-table tfoot th {
    font-weight: 400;
}

.scg-checkout-page .woocommerce-checkout-review-order-table tfoot .order-total th,
.scg-checkout-page .woocommerce-checkout-review-order-table tfoot .order-total td {
    font-weight: 600;
    font-size: 18px;
    border-bottom: none;
    padding-top: 16px;
}

/* Payment Methods */
.scg-checkout-page .woocommerce-checkout-payment {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 24px;
}

.scg-checkout-page .woocommerce-checkout-payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    border: none;
}

.scg-checkout-page .woocommerce-checkout-payment ul.payment_methods li {
    padding: 16px;
    margin-bottom: 8px;
    background: #F5F4F2;
    border-radius: 8px;
    border: none;
}

.scg-checkout-page .woocommerce-checkout-payment ul.payment_methods li:last-child {
    margin-bottom: 0;
}

.scg-checkout-page .woocommerce-checkout-payment ul.payment_methods li label {
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    cursor: pointer;
}

.scg-checkout-page .woocommerce-checkout-payment .payment_box {
    background: transparent;
    padding: 12px 0 0;
    margin: 0;
    color: rgba(17, 17, 17, 0.6);
    font-size: 14px;
}

.scg-checkout-page .woocommerce-checkout-payment .payment_box::before {
    display: none;
}

/* Hide coupon toggle on checkout */
.scg-checkout-page .woocommerce-form-coupon-toggle,
.scg-checkout-page .checkout_coupon,
.scg-checkout-page .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon,
.woocommerce-form-coupon-toggle,
.checkout_coupon.woocommerce-form-coupon {
    display: none !important;
}

/* Place Order Button */
.scg-checkout-page #place_order {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #111111;
    color: #FFFFFF;
    border: none;
    border-radius: 62px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scg-checkout-page #place_order:hover {
    background: #262626;
    transform: translateY(-1px);
}

/* Terms and Conditions */
.scg-checkout-page .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
}

.scg-checkout-page .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
}

.scg-checkout-page .woocommerce-terms-and-conditions-wrapper a {
    color: #111111;
}

/* Hide default WooCommerce elements we don't need */
.scg-checkout-page .woocommerce-checkout .col2-set {
    display: contents;
}

.scg-checkout-page .woocommerce-checkout .col2-set .col-1,
.scg-checkout-page .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
}

/* Shipping to different address toggle */
.scg-checkout-page #ship-to-different-address {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.scg-checkout-page #ship-to-different-address label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Side by Side Block
--------------------------------------------------------------*/
.side-by-side-block {
    overflow: hidden;
    /* Padding is controlled by parent .flex-block */
}

/* Content column - padding for text content */
.sbs-content-col {
    display: flex;
    align-items: center;
}

.sbs-text-wrapper {
    padding: 40px 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .sbs-text-wrapper {
        padding: 0;
        max-width: 420px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .sbs-text-wrapper {
        max-width: 480px;
    }
}

/* Media til højre: tekst til venstre, billede til højre */
@media (min-width: 992px) {
    /* Tekst-kolonne: skal have container-luft til venstre */
    .side-by-side-block.media-right .sbs-content-col {
        padding-left: calc((100vw - 960px) / 2);
        padding-right: 0;
    }
    
    .side-by-side-block.media-right .sbs-content-col .sbs-text-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 60px; /* Gap til billedet */
    }
}

@media (min-width: 1200px) {
    .side-by-side-block.media-right .sbs-content-col {
        padding-left: calc((100vw - 1140px) / 2);
    }
}

@media (min-width: 1400px) {
    .side-by-side-block.media-right .sbs-content-col {
        padding-left: calc((100vw - 1320px) / 2);
    }
}

/* Media til venstre: billede til venstre, tekst til højre */
@media (min-width: 992px) {
    /* Tekst-kolonne: skal have container-luft til højre */
    .side-by-side-block.media-left .sbs-content-col {
        padding-left: 0;
        padding-right: calc((100vw - 960px) / 2);
    }
    
    .side-by-side-block.media-left .sbs-content-col .sbs-text-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding-left: 60px; /* Gap til billedet */
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    .side-by-side-block.media-left .sbs-content-col {
        padding-right: calc((100vw - 1140px) / 2);
    }
}

@media (min-width: 1400px) {
    .side-by-side-block.media-left .sbs-content-col {
        padding-right: calc((100vw - 1320px) / 2);
    }
}

/* Media column - billede går til kanten */
.sbs-media-col {
    padding: 0 !important;
    overflow: hidden;
}

/* Headers section */
.side-by-side-headers {
    margin-bottom: 40px;
}

.side-by-side-eyebrow {
    display: block;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 20px;
}

.side-by-side-block.bg-dark .side-by-side-eyebrow {
    color: #FFFFFF;
}

.side-by-side-header {
    font-family: 'FreightDisp Pro', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: #111111;
    margin: 0 0 20px 0;
}

@media (min-width: 992px) {
    .side-by-side-header {
        font-size: 61px;
    }
}

.side-by-side-block.bg-dark .side-by-side-header {
    color: #FFFFFF;
}

.side-by-side-subheader {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.7);
    margin: 0;
}

.side-by-side-block.bg-dark .side-by-side-subheader {
    color: rgba(255, 255, 255, 0.7);
}

/* Text content column */
.side-by-side-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-by-side-text-content .sbs-eyebrow + .sbs-header {
    margin-top: 0;
}

.side-by-side-text-content .sbs-header + .sbs-body,
.side-by-side-text-content .sbs-subheader + .sbs-body {
    margin-top: 20px;
}

.sbs-eyebrow {
    display: block;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: inherit;
}

.sbs-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}

@media (min-width: 992px) {
    .sbs-header {
        font-size: 61px;
    }
}

.sbs-subheader {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

.sbs-body {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: inherit;
}

.sbs-body p {
    margin: 0 0 1em 0;
    color: inherit;
}

.sbs-body p:last-child {
    margin-bottom: 0;
}

/* Buttons in text */
.sbs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

/* Link/CTA */
.sbs-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #111111;
    transition: all 0.3s ease;
}

.sbs-link:hover {
    color: #111111;
    text-decoration: none;
}

.side-by-side-block.bg-dark .sbs-link {
    color: #FFFFFF;
}

.sbs-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.sbs-link-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.sbs-link:hover .sbs-link-icon svg {
    transform: translateX(3px);
}

.sbs-link-text {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Image column */
.side-by-side-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

@media (min-width: 992px) {
    .side-by-side-image-wrapper {
        min-height: 500px;
    }
    
    /* Media til højre: billede går til højre kant, border-radius kun til venstre */
    .side-by-side-block.media-right .side-by-side-image-wrapper {
        border-radius: 5px 0 0 5px;
    }
    
    /* Media til venstre: billede går til venstre kant, border-radius kun til højre */
    .side-by-side-block.media-left .side-by-side-image-wrapper {
        border-radius: 0 5px 5px 0;
    }
}

.side-by-side-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (min-width: 992px) {
    .side-by-side-image {
        min-height: 500px;
    }
}

.sbs-image-caption {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
    margin-top: 12px;
    padding: 0 1rem;
}

/* Video column */
.side-by-side-video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .side-by-side-video-wrapper {
        min-height: 500px;
    }
    
    /* Media til højre: video går til højre kant, border-radius kun til venstre */
    .side-by-side-block.media-right .side-by-side-video-wrapper {
        border-radius: 5px 0 0 5px;
    }
    
    /* Media til venstre: video går til venstre kant, border-radius kun til højre */
    .side-by-side-block.media-left .side-by-side-video-wrapper {
        border-radius: 0 5px 5px 0;
    }
}

.side-by-side-video-wrapper .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .side-by-side-video-wrapper .video-embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
    }
    
    .side-by-side-video-wrapper {
        position: relative;
    }
}

.side-by-side-video-wrapper .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.side-by-side-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .side-by-side-video {
        min-height: 500px;
    }
}

/* Quote column */
.side-by-side-quote {
    padding: 40px;
    background-color: #F5F5F5;
    border-radius: 5px;
    margin: 0;
    border: none;
}

.side-by-side-block.bg-dark .side-by-side-quote {
    background-color: rgba(255, 255, 255, 0.1);
}

.side-by-side-quote .quote-text {
    font-family: 'FreightDisp Pro', Georgia, serif;
    font-size: 28px;
    line-height: 1.3;
    font-style: italic;
    color: #111111;
    margin: 0 0 20px 0;
}

.side-by-side-block.bg-dark .side-by-side-quote .quote-text {
    color: #FFFFFF;
}

.side-by-side-quote .quote-author {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.6);
}

.side-by-side-block.bg-dark .side-by-side-quote .quote-author {
    color: rgba(255, 255, 255, 0.6);
}

/* Accordion in side-by-side */
.side-by-side-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid currentColor;
    border-bottom-color: rgba(128, 128, 128, 0.2);
}

.side-by-side-accordion .accordion-button {
    background: transparent;
    color: inherit;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
    box-shadow: none;
}

.side-by-side-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: inherit;
}

.side-by-side-accordion .accordion-body {
    padding: 0 0 20px 0;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Form in side-by-side */
.side-by-side-form input[type="text"],
.side-by-side-form input[type="email"],
.side-by-side-form input[type="tel"],
.side-by-side-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 5px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    background: transparent;
}

.side-by-side-block.bg-dark .side-by-side-form input[type="text"],
.side-by-side-block.bg-dark .side-by-side-form input[type="email"],
.side-by-side-block.bg-dark .side-by-side-form input[type="tel"],
.side-by-side-block.bg-dark .side-by-side-form textarea {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.side-by-side-form input[type="submit"] {
    background-color: #111111;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.side-by-side-form input[type="submit"]:hover {
    background-color: #333333;
}

.side-by-side-block.bg-dark .side-by-side-form input[type="submit"] {
    background-color: #FFFFFF;
    color: #111111;
}

.side-by-side-block.bg-dark .side-by-side-form input[type="submit"]:hover {
    background-color: #F5F5F5;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: "Basier Circle";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("./fonts/BasierCircle-Regular.igZk1xlr.woff2") format("woff2"),
         url("./fonts/BasierCircle-Regular.BJxRALR0.woff") format("woff");
}

@font-face {
    font-family: "Basier Circle";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("./fonts/BasierCircle-SemiBold.DceRZrUH.woff2") format("woff2");
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Footer Background with Image/Video */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000000;
    background-image: url('./images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 48px;
}

.footer-content .container-fluid {
    max-width: 1632px;
    margin: 0 auto;
}

.footer-content .row {
    align-items: flex-start;
    justify-content: space-between;
}

/* Footer Left Side */
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Footer Logo */
.footer-logo {
    display: block;
}

.footer-logo img {
    max-width: 191px;
    height: auto;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-phone,
.footer-email {
    font-family: 'FreightDisp Pro', Georgia, serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-phone {
    text-transform: uppercase;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.7;
    color: #FFFFFF;
    text-decoration: none;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 239px;
    margin-top: 80px;
}

.footer-social-row {
    display: flex;
    gap: 40px;
}

.footer-social-link {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #FFFFFF;
    text-decoration: none;
    min-width: 99px;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
    color: #FFFFFF;
    text-decoration: none;
}

/* Footer Right Side - Menus */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-menus {
    display: flex;
    gap: 40px;
}

.footer-menu-column {
    min-width: 238px;
}

/* Footer Menu Styling */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0;
}

.footer-menu li:first-child a {
    font-family: 'FreightDisp Pro', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    pointer-events: none;
}

.footer-menu li:not(:first-child) a {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    padding: 7.5px 0;
    transition: opacity 0.3s ease;
}

.footer-menu li:not(:first-child) a:hover {
    opacity: 0.7;
    color: #FFFFFF;
    text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-menus {
        gap: 30px;
    }
    
    .footer-menu-column {
        min-width: 180px;
    }
    
    .footer-phone,
    .footer-email {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .footer-content {
        padding: 80px 24px;
    }
    
    .footer-left {
        min-height: auto;
        margin-bottom: 60px;
    }
    
    .footer-brand {
        gap: 40px;
    }
    
    .footer-right {
        justify-content: flex-start;
    }
    
    .footer-menus {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-menu-column {
        min-width: calc(50% - 20px);
    }
    
    .footer-phone,
    .footer-email {
        font-size: 32px;
    }
    
    .footer-menu li:first-child a {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        min-height: auto;
    }
    
    .footer-content {
        padding: 60px 20px;
    }
    
    .footer-left {
        margin-bottom: 40px;
    }
    
    .footer-brand {
        gap: 30px;
    }
    
    .footer-contact {
        gap: 20px;
    }
    
    .footer-phone,
    .footer-email {
        font-size: 24px;
    }
    
    .footer-social-row {
        gap: 30px;
    }
    
    .footer-menu-column {
        min-width: 100%;
    }
    
    .footer-menu li:first-child a {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Text Block
--------------------------------------------------------------*/
.text-block {
    /* Padding is controlled by parent .flex-block */
}

.text-block .container {
    max-width: 764px;
    margin: 0 auto;
}

/* Text Block Headers */
.text-block-headers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.text-block .text-eyebrow {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-block .text-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 61px;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}

.text-block .text-subheader {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: inherit;
}

/* Text Block Content */
.text-block .text-content {
    margin-bottom: 30px;
}

.text-block .text-content:last-child {
    margin-bottom: 0;
}

.text-block .text-col-one,
.text-block .text-col-two {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: inherit;
}

.text-block .text-col-one p,
.text-block .text-col-two p {
    margin: 0 0 1em;
    color: inherit;
}

.text-block .text-col-one p:last-child,
.text-block .text-col-two p:last-child {
    margin-bottom: 0;
}

/* Two Column Layout */
.text-block.columns-two-col .row {
    gap: 40px;
}

.text-block.columns-two-col .col-md-6 {
    flex: 1;
}

/* Text Block Buttons */
.text-block .text-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Text Block Responsive */
@media (max-width: 991px) {
    .text-block .text-header {
        font-size: 42px;
    }
    
    .text-block .text-subheader {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .text-block .text-header {
        font-size: 32px;
    }
    
    .text-block .text-subheader {
        font-size: 20px;
    }
    
    .text-block-headers {
        gap: 15px;
    }
    
    .text-block.columns-two-col .row {
        flex-direction: column;
        gap: 20px;
    }
}

/*--------------------------------------------------------------
# Accordion Block
--------------------------------------------------------------*/
.accordion-block {
    /* Background and padding controlled by parent .flex-block */
}

/* Grid Layout */
.accordion-block-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .accordion-block-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }
}

/* Left Column - Headers */
.accordion-block-left {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .accordion-block-left {
        max-width: 500px;
    }
}

.accordion-headers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-eyebrow {
    display: block;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: inherit;
}

.accordion-main-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}

@media (min-width: 768px) {
    .accordion-main-header {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .accordion-main-header {
        font-size: 61px;
    }
}

.accordion-subheader {
    font-family: 'FreightDisp Pro', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: rgba(6, 10, 20, 0.7);
}

/* Right Column - Accordion Items */
.accordion-block-right {
    flex: 1;
    min-width: 0;
}

@media (min-width: 992px) {
    .accordion-block-right {
        padding-top: 60px;
        max-width: 774px;
    }
}

/* Accordion Styling */
.scg-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.scg-accordion-item {
    border: none;
    border-bottom: 1px solid #D0D0D0;
    background: transparent;
    border-radius: 0;
}

.scg-accordion-item:last-child {
    border-bottom: 1px solid #D0D0D0;
}

.scg-accordion-header {
    margin: 0;
}

.scg-accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    width: 100%;
    padding: 20px 0;
    background: transparent !important;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scg-accordion-button:focus,
.scg-accordion-button:not(.collapsed),
.scg-accordion-button:not(.collapsed):focus {
    outline: none;
    box-shadow: none;
    color: inherit;
    background-color: transparent;
}

.scg-accordion-button::after {
    display: none !important;
}

.scg-accordion-title {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: inherit;
    line-height: 1.3em;
    letter-spacing: -0.02em;
    color: #060A14;
}

@media (min-width: 768px) {
    .scg-accordion-title {
        font-size: 21px;
    }
}

.scg-accordion-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #060A14;
    transition: transform 0.2s ease;
}

.scg-accordion-icon .icon-plus,
.scg-accordion-icon .icon-minus {
    position: absolute;
    transition: opacity 0.2s ease;
}

.scg-accordion-icon .icon-minus {
    opacity: 0;
}

.scg-accordion-button:not(.collapsed) .scg-accordion-icon .icon-plus {
    opacity: 0;
}

.scg-accordion-button:not(.collapsed) .scg-accordion-icon .icon-minus {
    opacity: 1;
}

/* Accordion Body */
.scg-accordion-body {
    padding: 0 0 20px 0;
}

.scg-accordion-body .accordion-text {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: rgba(6, 10, 20, 0.7);
    padding: 20px 40px 20px 0;
}

.scg-accordion-body .accordion-text p {
    margin: 0 0 1em;
}

.scg-accordion-body .accordion-text p:last-child {
    margin-bottom: 0;
}

.scg-accordion-body .accordion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* Hover States */
.scg-accordion-button:hover .scg-accordion-title {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 767px) {
    .accordion-main-header {
        font-size: 32px;
    }
    
    .scg-accordion-title {
        font-size: 16px;
    }
    
    .scg-accordion-button {
        padding: 16px 0;
    }
}

/*--------------------------------------------------------------
# Image Block
--------------------------------------------------------------*/
.image-block {
    width: 100%;
}

/* Padding classes */
.image-block.padding-top-none {
    padding-top: 0;
}
.image-block.padding-top-small {
    padding-top: 20px;
}
.image-block.padding-top-default {
    padding-top: 40px;
}
.image-block.padding-top-large {
    padding-top: 80px;
}
.image-block.padding-bottom-none {
    padding-bottom: 0;
}
.image-block.padding-bottom-small {
    padding-bottom: 20px;
}
.image-block.padding-bottom-default {
    padding-bottom: 40px;
}
.image-block.padding-bottom-large {
    padding-bottom: 80px;
}

/* Margin classes */
.image-block.margin-top-none {
    margin-top: 0;
}
.image-block.margin-top-small {
    margin-top: 20px;
}
.image-block.margin-top-default {
    margin-top: 40px;
}
.image-block.margin-top-large {
    margin-top: 80px;
}
.image-block.margin-bottom-none {
    margin-bottom: 0;
}
.image-block.margin-bottom-small {
    margin-bottom: 20px;
}
.image-block.margin-bottom-default {
    margin-bottom: 40px;
}
.image-block.margin-bottom-large {
    margin-bottom: 80px;
}

/* Figure */
.image-block-figure {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Narrow width */
.image-block-figure.image-block-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image */
.image-block-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Full width container - no border radius */
.image-block.container-fluid .image-block-img {
    border-radius: 0;
}

/* Caption */
.image-block-caption {
    margin-top: 16px;
    font-size: 14px;
    color: inherit;
    opacity: 0.6;
    text-align: center;
    font-style: italic;
}

/* Responsive */
@media (min-width: 992px) {
    .image-block.padding-top-default {
        padding-top: 60px;
    }
    .image-block.padding-top-large {
        padding-top: 120px;
    }
    .image-block.padding-bottom-default {
        padding-bottom: 60px;
    }
    .image-block.padding-bottom-large {
        padding-bottom: 120px;
    }
    .image-block.margin-top-default {
        margin-top: 60px;
    }
    .image-block.margin-top-large {
        margin-top: 120px;
    }
    .image-block.margin-bottom-default {
        margin-bottom: 60px;
    }
    .image-block.margin-bottom-large {
        margin-bottom: 120px;
    }
}

/*--------------------------------------------------------------
# Video Block
--------------------------------------------------------------*/
.video-block {
    width: 100%;
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Narrow width */
.video-wrapper.video-wrapper-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video embed - responsive container for iframes */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
}

.video-embed iframe,
.video-embed video,
.video-embed object,
.video-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
}

/* Self-hosted video file */
.video-file {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Full width container - no border radius */
.flex-block.container-fluid .video-embed,
.flex-block.container-fluid .video-embed iframe,
.flex-block.container-fluid .video-file {
    border-radius: 0;
}

/* Video player container with custom controls */
.video-player-container {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.flex-block.container-fluid .video-player-container {
    border-radius: 0;
}

/* Play/Pause button */
.video-play-pause {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(17, 17, 17, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
    padding: 0;
}

.video-play-pause:hover {
    background: rgba(17, 17, 17, 0.8);
    transform: scale(1.05);
}

.video-play-pause:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.video-play-pause .video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-pause .video-icon svg {
    width: 20px;
    height: 20px;
}

/* Playing state - show pause icon */
.video-play-pause.is-playing .video-icon-pause {
    display: flex;
}

.video-play-pause.is-playing .video-icon-play {
    display: none !important;
}

/* Paused state - show play icon */
.video-play-pause.is-paused .video-icon-pause {
    display: none !important;
}

.video-play-pause.is-paused .video-icon-play {
    display: flex !important;
}

/*--------------------------------------------------------------
# Quote Block
--------------------------------------------------------------*/
.quote-block {
    width: 100%;
}

.quote-content {
    max-width: 978px;
    margin: 0 auto;
    text-align: left;
}

.quote-blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.quote-text {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: clamp(32px, 5vw, 61px);
    font-weight: 300;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0 0 30px 0;
}

.quote-footer {
    margin: 0;
    padding: 0;
}

.quote-quotee {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    font-style: normal;
    color: inherit;
}

/* Responsive */
@media (max-width: 991px) {
    .quote-text {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .quote-quotee {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Gallery Block
--------------------------------------------------------------*/
.gallery-block {
    /* Padding controlled by parent .flex-block */
}

/* Headers */
.gallery-headers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 724px;
    margin-bottom: 40px;
}

.gallery-eyebrow {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: inherit;
}

.gallery-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}

@media (min-width: 992px) {
    .gallery-header {
        font-size: 61px;
    }
}

.gallery-subheader {
    font-family: "freight-big-pro", Georgia, serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: inherit;
    margin: 0;
}

@media (min-width: 992px) {
    .gallery-subheader {
        font-size: 27px;
    }
}

/* Masonry Layout */
.gallery-masonry {
    display: flex;
    gap: 20px;
}

@media (min-width: 992px) {
    .gallery-masonry {
        gap: 45px;
    }
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .gallery-column {
        gap: 40px;
    }
}

/* Gallery Item */
.gallery-item {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item a {
    display: block;
    text-decoration: none;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.02);
}

.gallery-caption {
    margin-top: 12px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 14px;
    color: inherit;
    opacity: 0.7;
}

/* Responsive - Stack columns on mobile */
@media (max-width: 767px) {
    .gallery-masonry {
        flex-direction: column;
    }
    
    .gallery-headers {
        margin-bottom: 30px;
    }
    
    .gallery-header {
        font-size: 32px;
    }
    
    .gallery-subheader {
        font-size: 18px;
    }
}

/* ========================================
   PRODUCT SLIDER BLOCK
   ======================================== */

.product-slider-block {
    width: 100%;
}

/* Top Row - Header and View All link */
.product-slider-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.product-slider-headers {
    flex: 1;
}

.product-slider-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    padding-top: 8px;
    transition: opacity 0.2s ease;
}

.product-slider-view-all:hover {
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
}

.product-slider-view-all svg {
    transition: transform 0.2s ease;
}

.product-slider-view-all:hover svg {
    transform: translateX(4px);
}

.product-slider-eyebrow {
    display: block;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.7;
    margin-bottom: 16px;
}

.product-slider-header {
    font-family: "freight-big-pro", Georgia, serif;
    font-weight: 300;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0 0 16px;
}

.product-slider-subheader {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    opacity: 0.8;
    margin: 0 0 16px;
}

.product-slider-body-text {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: inherit;
    max-width: 700px;
}

.product-slider-body-text p {
    margin: 0 0 1em;
}

.product-slider-body-text p:last-child {
    margin-bottom: 0;
}

/* Product Grid - 4 columns on desktop, same as WooCommerce products */
.product-slider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .product-slider-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .product-slider-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* Product Item - matches WooCommerce product card styling */
.product-slider-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-slider-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-slider-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.product-slider-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Image wrapper - square with white background */
.product-slider-image-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

.product-slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-slider-item:hover .product-slider-image {
    transform: scale(1.05);
}

/* Content area */
.product-slider-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-slider-title {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-slider-price {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    margin-top: auto;
}

.product-slider-price .woocommerce-Price-amount {
    color: #111111;
}

.product-slider-price .woocommerce-price-suffix {
    font-size: 0.75rem;
    font-weight: 400;
    color: #111111;
    opacity: 0.7;
    display: inline;
    margin-left: 4px;
}

.product-slider-price del {
    color: #999;
    font-weight: 400;
    margin-right: 0.5em;
}

.product-slider-price ins {
    text-decoration: none;
}

/* Button */
.product-slider-btn {
    margin: 0 1rem 1rem;
    text-align: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .product-slider-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .product-slider-view-all {
        padding-top: 0;
    }
    
    .product-slider-header {
        font-size: 32px;
    }
    
    .product-slider-subheader {
        font-size: 16px;
    }
    
    .product-slider-image-wrapper {
        padding: 20px;
    }
    
    .product-slider-title {
        font-size: 0.875rem;
    }
    
    .product-slider-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}