.flex-div {
    display: flex;
    align-items: center;
}

div.list-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 15px;
}

div.ve-list {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    background: white;
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

div.ve-list .thumbnail {
    width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    border-color: #aaa;
    height: 200px;
}

div.ve-list:hover {
    transform: scale(1.05);
}

div.ve-list .flex-div {
    align-items: flex-start;
    margin-top: 7px;
}

div.ve-list .edesc {
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0.4rem;
    text-overflow: ellipsis;
    color: #5a5a5a;
}

div.ve-list .details {
    padding: 1.5rem;
    color: #6b7280;
}

div.details h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #282c34;
    font-weight: 600;
}

div.details:hover h4 {
    color: #f69400;
}

div.details h5 {
    margin-bottom: 0.8rem;
}

img.cth {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
}

a.elink {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #f69400;
    float: right;
    font-weight: 500;
}

button.elink {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #f69400;
    float: right;
    font-weight: 500;
    border: none;
    background: #fff;
}

button.elink:hover {
    color: #fff;
    background-color: #f69400;
    padding: 5px 10px;
    border-radius: 5px;
}

span.e_category {
    color: #282c34;
    background-color: #fff3eb;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
    border-radius: 1rem;
    font-weight: 600;
    margin-right: 1rem;
}

p.e_categories {
    margin-bottom: 0.5rem;
}

span.stats {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #5a5a5a;
}

span.stats img {
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}

span.name {
    color: #5a5a5a;
}

div.heroContainer {
    background-image: url(/images/artegallery.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.heroText {
    margin: auto;
    max-width: 52rem;
    vertical-align: middle;
    color: white;
    padding: 8rem 8rem;
}

div.heroText h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

div.heroText p {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 42rem;
    text-align: center;
}

div.heroText h1 span.titleOrange {
    color: #f69400;
}

div.heroOverlay {
    background-color: rgb(0 0 0 / 0.5);
    width: 100%;
    height: 80vh;
    border-radius: 1rem;
}

div.search_container {
    margin: 2rem auto;
    align-items: center;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    background: white;
    border-radius: 0.5rem;
    display: block;
    max-width: 470px;
}

div.search_container:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

div.search_container:focus-within {
    border: #dd6b19f7 2px solid;
}

input#search_input {
    border: none;
    outline: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 90%;
    padding: 0.5rem;
}

div.search_container img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

div.category_links {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

a.category_link {
    text-decoration: none;
    color: #282c34;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    margin-right: 20px;
    border-radius: 0.5rem;
    background: #fff3eb;
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 600;
}

a.category_link:hover {
    background-color: #f69400;
    color: #fff;
}

button.category_link {
    text-decoration: none;
    color: #282c34;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    margin-right: 20px;
    border-radius: 0.5rem;
    background: #fff3eb;
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 600;
}

button.category_link:hover {
    background-color: #f69400;
    color: #fff;
}

h2.list_header {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
}

div.category_header {
    padding: 1rem 0rem;
    color: white;
    background-image: linear-gradient(to right, #f69400, #04a2ff);
}

div.category_header h2 {
    padding: 1rem 0rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}

div.list_header_container {
    padding-top: 3em;
    padding-bottom: 0.5em;
    display: flex;
    justify-content: space-between;
}

a.link {
    float: right;
    border: 0;
    background: transparent;
    color: #f69400;
    font-size: 1.125rem;
}

a.link img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(55%) saturate(4894%) hue-rotate(9deg) brightness(104%) contrast(109%);
    vertical-align: text-bottom;
}

a.link:hover {
    color: #fff;
    background-color: #f69400;
    border-radius: 5px;
    padding: 5px;
}

a.link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(314deg) brightness(106%) contrast(101%);
}

section#hero {
    padding: 3% 1%;
    background: #fcfbf8;
}

section.bg {
    background-color: #fcfbf8;
}

div.paginate {
    margin-top: 2rem;
    text-align: center;
}

div.paginate ul {
    list-style-type: none;
    display: inline-flex;
}

div.paginate ul li {
    margin: 5px;
}

a.page_link_text {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    border: 0px solid gray;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    display: block;
}

a.page_link_text:hover {
    background-color: #f69400;
    border: 1px solid #f69400;
    color: #fff;
}

a.page_link_num {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    display: block;
}

a.page_link_num:hover {
    background-color: #f69400;
    border: 1px solid #f69400;
    color: #fff;
}

a.link_dsbl {
    pointer-events: none;
    opacity: 0.5;
}

h2.ct {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #282c34;
    text-align: center;
}

p.ct {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #5a5a5a;
    text-align: center;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.ptype {
    flex-basis: 31%;
    background: #F6F6F6;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 00.56s;
    margin-bottom: 1em;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.ptype ul {
    margin-left: 2em;
    margin-top: 3%;
}

.ptype li {
    text-align: left;
    margin-bottom: 3%;
}
:root {
            --primary-orange: #f69400;
            --secondary-blue: #04a2ff;
            --dark-gray: #1a1a1a;
            --light-gray: #f4f4f4;
        }

.optin-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    text-align: center;
    border-top: 5px solid var(--secondary-blue);
    margin:auto;
}

.optin-container h2 {
    margin-top: 0;
    color: var(--dark-gray);
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.optin-container p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.cta-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e58a00;
    transform: translateY(-2px);
}

.footer-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}

@media screen and (max-width: 700px) {
    div.list-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    div.heroText {
        padding: 1rem;
    }

    div.heroText h1 {
        font-size: 4rem;
    }

    div.heroOverlay {
        display: flex;
    }
}

@media screen and (max-width: 1400px) and (min-width: 701px) {
    div.list-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
*{
    margin: 0;
    padding: 0;
    font-family: Arial-fallback,Linux-fallback,Helvetica,Helvetica Neue,-apple-system,BlinkMacSystemFont,sans-serif;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #5a5a5a;
}
img{
    cursor: pointer;
}
nav{
    display: flex;
    padding: 10px 2%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav h1 {
	display: inline;
	color: #04a2ff;
	font-size: 3em;
	margin-left: 10px;
}
nav img.logo {
    width:  42px;
	vertical-align: text-bottom;
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding:8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #f69400;
    text-decoration: none;
    font-size: 1.35em;
    font-weight: 600;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #04a2ff;
    display: block;
    margin: auto;
    transition: 0.56s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
button.menu-close {
    display: none;
}
button.menu-open {
    display: none;
}
div.container{
    padding-left: 2%;
    padding-right: 2%;
    padding-top:20px;
    padding-bottom: 20px;
    margin: auto;
    max-width: 80%;
}
button.nav_btn {
    border-radius: 0.5rem;
    margin: 10px 5px;
    background-color: #fcfbf8;
    color: #5a5a5a;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
}
button.nav_btn img {
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
    margin-right: 5px;
}

button.nav_btn:hover {
    background-color: #f69400;
    color: #fff;
}
button.nav_btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(314deg) brightness(106%) contrast(101%);
}

select.lang-select {
    max-width: 120px;
}

@media (max-width: 700px) {
    div.container {
        max-width: 36rem;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #B0DEF5;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -400px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        display: none;
    }
    nav .fa{
        display: block;
        color: #f69400;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    button.menu-close {
        display: block;
        width: 32px;
        border: 0px;
        margin-left: 20px;
        margin-top: 20px;
        background: #B0DEF5;
    }
    button.menu-open {
        display: block;
        width: 32px;
        background-color: #fff;
        border: none;
    }
    nav img.logo {
        width : 42px;
    }
	nav h1 {
		font-size: 1.7em;
		display:block;
	}
    nav {
        padding: 2% 2%;
    }
}
@media screen 
    and (max-width: 1400px) 
    and (min-width: 701px) {
    div.container {
        max-width: 72rem;
    }
        .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #B0DEF5;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -400px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        display: none;
    }
    nav .fa{
        display: block;
        color: #f69400;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    button.menu-close {
        display: block;
        width: 32px;
        border: 0px;
        margin-left: 20px;
        margin-top: 20px;
        background: #B0DEF5;
    }
    button.menu-open {
        display: block;
        width: 32px;
        background-color: #fff;
        border: none;
    }

    nav h1 {
		font-size: 2.25em;
		display:block;
	}
}
section.content {
    color : #3a3a3a;
    background-color: #fcfbf8;
}


.copyright {
margin: auto;
text-align: center;
}
ul.plist {
    list-style-type:  none;
}
ul.plist li {
    margin-bottom: 10px;
}
ul.plist li button.link-button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    text: inherit;
    font: inherit;
    text-decoration: none;
}
ul.plist li button.link-button:hover {
    text-decoration: underline;
}
ul.plist li.top {
    font-weight: 600;
}
div.social {
    text-align: left;
}
div.social img {
width: 24px;
height: 24px;
}
img.playstore {
    width: 180px;
    margin-left: -10px;
    margin-right: 25px;
}
img.appstore {
width: 160px;
margin-right: 25px;
margin-bottom: 10px;

}
img.logo-small {
width: 64px;
}
footer {
    padding-top: 20px;
    padding-left: 3%;
    padding-right: 3%;
    margin-top: 10px;
    width: 100%;
    margin: auto;
    font-size: 1.1rem;
    color: #313131;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}
div.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
    margin-top: 15px;
}
footer .store-btn {
  padding: 15px 30px; 
  font-size: 18px;
  color: white; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  background-image: linear-gradient(to right, #f69400, #04a2ff); 
  margin : 10px;
  display: block;
  font-weight:600;
  max-width: 250px;
}
footer ul.buttons {
    display: block;
	margin-bottom:2rem;
	margin-right: 1em;
	list-style-type:none;
}
footer a {
    text-decoration: none;
}
footer a:hover {
    color : #f69400;
}

*{
    margin: 0;
    padding: 0;
    font-family: Arial-fallback,Linux-fallback,Helvetica,Helvetica Neue,-apple-system,BlinkMacSystemFont,sans-serif;
}
.header{
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}

section#hero p.title {
	font-size: 3rem;
    margin-bottom: 1.5rem;;
	font-weight: 600;
	line-height: 1.25em;
    background: linear-gradient(to right, #f69400, #04a2ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
section#hero p.subtitle {
	font-size:2em;
	font-weight: 500;
	margin-bottom:2rem;
	max-width:32rem;
	line-height:1em;
}
img.hero {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 0px 40px 40px #e3f2fd;
	animation: bounce 3s infinite alternate;
}
div.heroImgContainer {
	padding : 4em;
}
ul.hero {
	display : flex;
	list-style-type:none;
}
.store-btn {
  padding: 15px 30px; 
  font-size: 18px;
  color: white; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  background-image: linear-gradient(to right, #f69400, #04a2ff); 
  margin : 10px;
  display: block;
  font-weight:600;
}
ul.buttons {
	display : flex;
	margin-bottom:2rem;
	margin-right: 1em;
	list-style-type:none;
}
div.buttons {
	max-width: 20rem;
	margin:auto;
}
ul.appstats {
	display : flex;
    list-style-type: none;
}
ul.appstats ul  {
    padding: 10px 20px;
    text-align: center;
    list-style-type: none;
}
li.value {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 5px;
}
div.stats_container {
    margin: auto;
}
p.nobg {
    color: grey;;
}
section#Screenshots {
    overflow-x: scroll;
}
div.screens  {
    display: inline-flex;
    overflow-x: scroll;
}
div.screen {
    border-radius: 1rem;
    margin-right: 1rem;
    transition: transform 0.5s ease-in;
    max-width: 330px;
    overflow: hidden;
    position: relative;
}
div.screen img {
    border-radius: 1rem;
    max-width: 330px;
    object-fit: contain;
}
div.screen:hover img{
    transform: scale(1.1);
}
div.screen .caption {
    position: absolute;
    bottom: 0;
    background-color: rgb(0 0 0 / 0.5);
    display: none;
}
div.screen:hover .caption {
    display: block;
}
div.screen .caption p {
   color: white;
   font-size: 1.25rem;
   line-height: 1.5rem;
   padding: 1.5rem 1rem;
}
div.dots {
    text-align: center;
    padding: 1rem 0;
    display: none;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
@media (max-width: 700px) {
    section#hero p.title {
        text-align: center;
    }
    section#hero p.subtitle {
        text-align: center;
    }
	ul.hero {
		display : block;
	}
	ul.buttons {
		display : block;
	}
	div.heroImgContainer {
	    padding: 1em;
	}
	nav h1 {
		font-size: 1.7em;
		display:block;
	}
    div.stats_container {
        text-align: center;
    }
    ul.appstats {
        display: inline-flex;
    }
    div.screen {
        display: none;
    }
    div.dots {
        display: block;
    }
}
@media screen and (max-width: 1400px) and (min-width: 701px) {
    div.screen {
        display: none;
    }
    div.dots {
        display: block;
    }
    ul.hero {
		display : block;
	}
    section#hero p.title {
        text-align: center;
    }
    section#hero p.subtitle {
        max-width: 42rem;
        text-align: center;
        margin: auto;
    }
    ul.buttons {
        justify-content: center;
    }
}

.content{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 70px;
}

h1{
    font-size: 36px;
    font-weight: 700;
}
p{
    color: #6B6B6B;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.ptype{
    flex-basis: 31%;
    background: #F6F6F6;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 00.56s;
    margin-bottom: 1em;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}
.ptype ul {
	margin-left:2em;
	margin-top: 3%;
}
.ptype li {
	text-align: left;
	margin-bottom: 3%;
}
.fet-img {
	max-width: 42px;
	-webkit-filter: brightness(0) invert(1); 
	filter: brightness(0) invert(1);
}
.fet-img:before {
	filter: brightness(0.5) sepia(1) hue-rotate(50deg);
	invert : 100%;
}
.fet-img-cont {
	width: 64px;
	height:64px;
	border-radius: 50%;
    background-image: linear-gradient(to right, #f69400, #04a2ff);
	margin:auto;
	padding: 10px;
}
.vev{
    flex-basis: 32.5%;
    background: #F5DEB3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 00.56s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 1em 0;
}
h3.ptitle {
	font-size : 1.3em;
	margin: .5em 0;
}
span.price {
	font-size :1.5em;
	color : #f69400;
	font-weight: 600;
}
ul.pwyg {
	list-style-type : none;
}
ul.pwyg li {
	margin-bottom : 10px;
}
ul.pwyg li:before {
  content: '✓';
  margin-right : 1em;
  font-weight : 600;
  color : #f69400;
  font-size: 1.1em;
}
h2{
   text-align: center;
   font-weight: 700;
   font-size: 2.0em;
}

.ptype:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0); /* Starting position */
    }
    50% {
        transform: translateY(-15px); /* Highest point of the bounce */
    }
    100% {
        transform: translateY(15px); /* Returns to starting position */
    }
}
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}
.cookie-consent__inner {
  pointer-events: auto;
  background: rgba(255,255,255,0.98);
  color: #111;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  padding: 14px 16px;
  max-width: 980px;
  width: calc(100% - 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "text text" "links actions";
  gap: 12px;
  align-items: center;
}
.cookie-consent__text { grid-area: text; font-size: 14px; }
.cookie-consent__links { grid-area: links; margin-right: 8px; display: flex; align-items: center; gap:8px; }
.cookie-consent__link { color: #2b6cb0; text-decoration: underline; font-size: 13px; }
.cookie-consent__manage { background: transparent; border: none; color: #333; cursor: pointer; font-size: 13px; }
.cookie-consent__actions { grid-area: actions; display: flex; gap: 8px; justify-self: end; align-self: center; }
.cookie-consent__btn { padding: 8px 12px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; font-size: 14px; }
.cookie-consent__btn--primary { background: #1f7a8c; color: #fff; }
.cookie-consent__btn--ghost { background: transparent; color: #333; border-color: #e6e6e6; }

/* Modal */
.cookie-consent__modal { position: fixed; inset: 0; display:flex; align-items:center; justify-content:center; background: rgba(0,0,0,0.4); z-index: 1100; }
.cookie-consent__modal { pointer-events: auto; }

/* Keep banner near bottom on small screens for better UX */
@media (max-width: 600px) {
  .cookie-consent {
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "links" "actions";
  }
  .cookie-consent__actions { justify-self: start; }
}

/* respect the HTML5 hidden attribute when toggled from JS */
.cookie-consent[hidden], .cookie-consent__modal[hidden] {
  display: none !important;
  pointer-events: none !important;
}
.cookie-consent__modal { pointer-events: auto; }
.cookie-consent__modal-inner { background: #fff; padding: 20px; border-radius: 8px; max-width: 640px; width: calc(100% - 40px); max-height: 90vh; overflow-y: auto; }
.cookie-consent__pref { margin: 12px 0; }
.cookie-consent__pref-row { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.cookie-consent__pref-title { font-weight:600; }
.cookie-consent__modal-actions { display:flex; justify-content:flex-end; gap:8px; margin-top:12px; }

/* Prevent body scroll when modal is open */
body.cookie-modal-open { overflow: hidden; }

