/*!
Theme Name: dicknorg
Theme URI: http://underscores.me/
Author: astab
Author URI: http://astab.nl
Description: dicknorg.nl theme
Version: 1.2.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dicknorg
*/

/* ============================================
   RESET & BASE
   ============================================ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a:hover{
	text-decoration:none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

a{
	all:unset;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav {
  display: block;
}

button {
  border: none;
  background: none;
  font: inherit;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #f1fafe;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  
}

input[type="search"] {
    background: white;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* FONT */

.thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --blue: #0f6187;
  --green: #008f4a;
  --light-blue: #0091d3;
  --light-green: #93af00;
  --text-color: #003c67;
  --bg-light: #f1fafe;
  --white: #ffffff;
  --border-color: #d1d8dc;

  /* Gradients - Horizontal */
  --gradient-h-05: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.05)
  );
  --gradient-h-10: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.1)
  );
  --gradient-h-20: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.2)
  );
  --gradient-h-30: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.3)
  );
  --gradient-h-40: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.4)
  );

  /* Gradients - Vertical */
  --gradient-v-05: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.05)
  );
  --gradient-v-10: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.1)
  );
  --gradient-v-20: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.2)
  );
  --gradient-v-30: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.3)
  );
  --gradient-v-40: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.4)
  );

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Sizes */
  --max-width: 1200px;
  --header-logo-height: 62px;
  --header-icon-size: 30px;
  --category-height: 180px;
  --border-radius: 10px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.35s ease;
	
  --footer-bg: var(--blue); /* Defaulting to blue, change if needed */
  --footer-text: #fff;   /* Slightly off-white for text */
  --footer-max-width: 1200px;
}

/* ============================================
     UTILITY CLASSES
     ============================================ */

/* Z-Index */
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
.z-6 {
  z-index: 6;
}
.z-7 {
  z-index: 7;
}
.z-8 {
  z-index: 8;
}
.z-9 {
  z-index: 9;
}
.z-10 {
  z-index: 10;
}

/* Drop Shadows - Format: ds-{blur}-{opacity} */

/* 5px blur variations */
.ds-5-10 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}
.ds-5-20 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.ds-5-30 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}
.ds-5-40 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}
.ds-5-50 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}
.ds-5-60 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}
.ds-5-70 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7));
}
.ds-5-80 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
}
.ds-5-90 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.9));
}
.ds-5-100 {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
}

/* 10px blur variations */
.ds-10-10 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.ds-10-20 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.ds-10-30 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
.ds-10-40 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.ds-10-50 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}
.ds-10-60 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6));
}
.ds-10-70 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
}
.ds-10-80 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
}
.ds-10-90 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.9));
}
.ds-10-100 {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}

/* 15px blur variations */
.ds-15-10 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
}
.ds-15-20 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.2));
}
.ds-15-30 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.3));
}
.ds-15-40 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.4));
}
.ds-15-50 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.5));
}
.ds-15-60 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.6));
}
.ds-15-70 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.7));
}
.ds-15-80 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.8));
}
.ds-15-90 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.9));
}
.ds-15-100 {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
}

/* 20px blur variations */
.ds-20-10 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
}
.ds-20-20 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}
.ds-20-30 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
}
.ds-20-40 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.4));
}
.ds-20-50 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
}
.ds-20-60 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
}
.ds-20-70 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.7));
}
.ds-20-80 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.8));
}
.ds-20-90 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.9));
}
.ds-20-100 {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 1));
}

/* 25px blur variations */
.ds-25-10 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.1));
}
.ds-25-20 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2));
}
.ds-25-30 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.3));
}
.ds-25-40 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.4));
}
.ds-25-50 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.5));
}
.ds-25-60 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.6));
}
.ds-25-70 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.7));
}
.ds-25-80 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.8));
}
.ds-25-90 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.9));
}
.ds-25-100 {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 1));
}

/* 30px blur variations */
.ds-30-10 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
}
.ds-30-20 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.2));
}
.ds-30-30 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.3));
}
.ds-30-40 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.4));
}
.ds-30-50 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.5));
}
.ds-30-60 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.6));
}
.ds-30-70 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.7));
}
.ds-30-80 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.8));
}
.ds-30-90 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.9));
}
.ds-30-100 {
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 1));
}

/* 40px blur variations */
.ds-40-10 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.1));
}
.ds-40-20 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.2));
}
.ds-40-30 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.3));
}
.ds-40-40 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.4));
}
.ds-40-50 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.5));
}
.ds-40-60 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.6));
}
.ds-40-70 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.7));
}
.ds-40-80 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.8));
}
.ds-40-90 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.9));
}
.ds-40-100 {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 1));
}

/* 50px blur variations */
.ds-50-10 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.1));
}
.ds-50-20 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.2));
}
.ds-50-30 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.3));
}
.ds-50-40 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.4));
}
.ds-50-50 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.5));
}
.ds-50-60 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.6));
}
.ds-50-70 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.7));
}
.ds-50-80 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.8));
}
.ds-50-90 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.9));
}
.ds-50-100 {
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 1));
}

/* Text */
.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

/* Gradients */
.gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gradient-h-05 {
  background: var(--gradient-h-05);
}
.gradient-h-10 {
  background: var(--gradient-h-10);
}
.gradient-h-20 {
  background: var(--gradient-h-20);
}
.gradient-h-30 {
  background: var(--gradient-h-30);
}
.gradient-h-40 {
  background: var(--gradient-h-40);
}
.gradient-v-05 {
  background: var(--gradient-v-05);
}
.gradient-v-10 {
  background: var(--gradient-v-10);
}
.gradient-v-20 {
  background: var(--gradient-v-20);
}
.gradient-v-30 {
  background: var(--gradient-v-30);
}
.gradient-v-40 {
  background: var(--gradient-v-40);
}

/* ============================================
     BUTTONS
     ============================================ */
.button {
  padding: var(--spacing-sm) 18px;
  background: var(--gradient-h-10), var(--blue);
  border-radius: var(--border-radius);
  color: var(--white);
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  transition: var(--transition-fast);
}

.button.green {
  background: var(--gradient-h-10), var(--green);
}

.button.light-green {
  background: var(--gradient-h-10), var(--light-green);
}

.button.light-blue {
  background: var(--gradient-h-10), var(--light-blue);
}

.icon-button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.icon-button span.material-symbols-outlined {
  color: var(--white);
  font-size: 18px;
  margin-left: 4px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

/* Top Bar */
.header-top {
  background: var(--gradient-h-10), var(--blue);
  display: flex;
  justify-content: center;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
}

.header-top-usps {
  display: flex;
  gap: var(--spacing-md);
}

.header-top-usp {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: var(--white);
}

.header-top-usp span.material-symbols-outlined {
  color: var(--light-green);
  font-size: 18px;
}

.header-top-menu {
  display: flex;
  gap: var(--spacing-md);
}

.header-top-menu-item {
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}

/* Main Header */
.header-main {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.header-main-content {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}

.header-logo {
/*   padding-bottom: var(--spacing-sm); */
  flex: 0 0 auto;
}

.header-logo img {
        height: 56px;
  width: auto;
/*   max-width: 100%; */
  object-fit: contain;
}

.header-logo {
    width: max-content;
	cursor:pointer;
}

/* Search Bar */
.header-search {
  display: flex;
  align-items: center;
}
.header-search-bar {
  width: -webkit-fill-available;
}
.header-search-bar input {
  height: 40px;
  width: -webkit-fill-available;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid var(--border-color);
  padding-left: var(--spacing-md);
  font-size: 14px;
}

.header-search-button {
  background: var(--green);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  border: 0;
}

.header-search-button span.material-symbols-outlined {
  color: var(--white);
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding-right: 10px;
}

.header-flag {
  width:30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-flag img {
  height: 20px;
  border-radius: var(--border-radius-sm);
}

.header-flag-menu {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-sm);
  gap: var(--spacing-sm);
  background: var(--white);
  border: 1px solid var(--border-color);
  width: fit-content;
  border-radius: var(--border-radius-md);
  position: absolute;
  right: 155px;
  top: 96px;
}

.header-account-icon,
.header-cart-icon {
  width: var(--header-icon-size);
  height: var(--header-icon-size);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-account-icon span.material-symbols-outlined {
  font-size: 32px;
}

.header-cart-icon span.material-symbols-outlined {
  font-size: 30px;
}

.header-cart-count.bold {
  background: var(--green);
  color: var(--white);
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 16px;
  height: 16px;
  top: -8px;
  right: -8px;
  font-size: 10px;
}

/* Navigation */
.header-nav {
  width: 100%;
  display: flex;
  background: var(--gradient-h-10), var(--blue);
  justify-content: center;
}

.header-nav-content {
  max-width: var(--max-width);
  width: 100%;
}

.header-nav-menu {
  display: flex;
  gap: var(--spacing-lg);
}

.header-nav-option {
  color: var(--white);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xs);
  cursor: pointer;
}

/* Desktop visibility defaults */
.header-search--mobile {
  display: none;
}

.header-menu-mobile {
  display: none;
}

.header-search--desktop {
  width: -webkit-fill-available;
  padding: 0px 64px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
	
  .header-top-usps {
width: fit-content;
	}


  .header-top-usp {
    position: absolute;
    opacity: 0;
	          height: 24px;
    animation: uspFade 15s infinite;
  }

  .header-top-usp:nth-child(1) {
    animation-delay: 0s;
  }

  .header-top-usp:nth-child(2) {
    animation-delay: 5s;
  }

  .header-top-usp:nth-child(3) {
    animation-delay: 10s;
  }

  @keyframes uspFade {
    0% { opacity: 0; }
    8% { opacity: 1; }
    25% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
  }

  /* Respect reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .header-top-usp {
      animation: none;
      opacity: 0;
      position: static;
    }
    .header-top-usp:nth-child(1) {
      opacity: 1;
    }
    .header-top-usps {
      min-height: auto;
    }
  }

}
	
@media (max-width: 800px) {
	.header-top{
		display:none;
	}

  /* Main header: compact with proper spacing */
  .header-main-content {
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-md);
  }

  /* Logo: force desktop height, maintain aspect ratio */
  .header-logo {
    padding-bottom: 0;
  }
	
.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
	


  /* Hide account icon on mobile */
  .header-account-icon--desktop {
    display: none;
  }

  /* Show mobile menu instance (Max Mega Menu hamburger) */
  .header-menu-mobile {
    display: block;
  }

	

	
  /* Swap search visibility */
  .header-search--desktop {
    display: none;
  }

  .header-search--mobile {
    display: flex;
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
  }

.header-icons {
    padding-right: 8px;
}

	
  #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child{
	  margin:0 !important;
	}
	
	
	    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open + #mega-menu-header-menu {
width: 100vw;
        position: absolute;
        left: -16px;
        top: 115px;
			        min-height: calc(100vh + 236px);
    }
	
	.mega-menu-link{
		border-radius:10px !important;
	}
	
	  .mega-menu-toggle {
    position: relative;
    display: inline-flex;
  }


	
  .header-search--mobile .header-search-bar {
    flex: 1;
  }

  .header-search--mobile .header-search-bar input {
    width: 100%;
    max-width: none;
  }

  /* Blue bar: full width for search */
  .header-nav-content {
    width: 100%;
  }

  /* Hide desktop nav menu in blue bar */
  .header-nav-menu--desktop {
    display: none;
  }
	
	#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
	  background: var(--text-color);
	}

	#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right {
	  background: white;
	}
}
/* ============================================
     PAGE & HERO
     ============================================ */
.webpage {
  width: 100%;
  min-height: calc(100vh - 180px);
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: 100%;
  min-height: 450px;
  display: flex;
  justify-content: center;
  background-image: url(img/hero.jpg);
  background-position-y: 526px;
  background-size: inherit;
  position: relative;
}

.hero-content {
  max-width: var(--max-width);
  width: -webkit-fill-available;
  padding: var(--spacing-xl);
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  display: flex;
  gap: var(--spacing-sm);
  flex-direction: column;
  color: var(--white);
}

.hero-title {
  font-size: 40px;
  max-width: 370px;
  line-height: 125%;
}

.hero-paragraph {
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
}

/* ============================================
     CONTENT & S
     ============================================ */
.content {
  width: var(--max-width);
  min-height: calc(100vh - 426px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0px;
}



@media (max-width: 1200px) {
.content {
    width: 100%;
	}
}
.main-categories {
  display: flex;
  flex-direction: column;
  /* gap: var(--spacing-md); */
  /* padding: var(--spacing-xl) 0; */
}

.section-title {
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.section-title a {
  text-decoration: none;
}

.section-title-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.section-title-link p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--green);
  transition: var(--transition-fast);
}

.section-title-link p::after {
  font-family: "Material Symbols Outlined";
  content: "arrow_forward_ios";
  font-size: 10px;
  display: inline-block;
  font-weight: 800;
  vertical-align: middle;
  margin-left: var(--spacing-sm);
  transition: var(--transition-fast);
}

.section-title-link p:hover {
  /* margin-left: 2px; */
}

.section-title-link p:hover::after {
  margin-left: 10px;
}

/* ============================================
     CATEGORIES
     ============================================ */
.categories {
  display: flex;
  width: 100%;
  gap: var(--spacing-sm);
}

.category {
  width: -webkit-fill-available;
  height: var(--category-height);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.category::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: var(--transition-normal);
  background-size: cover;
  background-position: center;
}

.category:hover::before {
  transform: scale(1.05);
  filter: blur(1.5px);
}

.category-link {
  text-decoration: unset;
  color: unset;
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
}

.category-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  flex-direction: column-reverse;
}

.category-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.category-content h4 {
  margin: 0;
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.category-info {
  color: var(--white);
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  line-height: 1.7;
}

.category:hover .category-info {
  opacity: 0.9;
}

/* ============================================
   SKELETON LOADER
   ============================================ */
@keyframes skeleton-shimmer {
  0% {
    background-position-x: 200%;
  }
  100% {
    background-position-x: 0%;
  }
}

.skeleton {
  display: contents;
  --_default-color: #e8e8e8;
  --_shimmer-color: #fff;
}

.skeleton :not(.wrapper) {
  animation: skeleton-shimmer 2s ease-out infinite;
  background: linear-gradient(
    100deg,
    var(--_default-color),
    var(--_default-color) 50%,
    var(--_shimmer-color) 60%,
    var(--_default-color) 70%
  );
  background-size: 200% 100%;
  background-attachment: fixed;
}

/* ==========================================================================
      FOOTER
   ========================================================================== */

/* 1. Base Container Styling (From your Legacy CSS) */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Using your exact background rule */
  background: var(--gradient-h-20), var(--footer-bg); 
  color: var(--white);
  margin-top: auto;
  padding:32px 0px 0px 0px;
  gap:32px;
}

/* 2. Main Area & Menu Wrapper */
/* .footer-main wraps the menu */
.footer-main {
  width: var(--footer-max-width);
  /* Ensure it doesn't overflow on small screens */
  max-width: 100%; 
  display: flex;
  justify-content: space-between;
  padding: 0px 16px;
}

/* 3. WordPress Menu Adapter 
   Mapping your ".footer-column" logic to the WordPress UL structure 
*/

/* The Top Level UL (Acts as the flex container for columns) */
ul.footer-menu-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
/*   list-style: none;
  margin: 0;
  padding: 0; */
  flex-wrap: wrap;
/*   gap: 32px; */
}

/* The Columns (Top Level LIs) */
/* Matches .footer-column */
ul.footer-menu-flex > li {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

/* The Column Titles (Top Level Links) */
/* Matches .footer-column-title */
ul.footer-menu-flex > li > a {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
  text-decoration: none;
  font-size: 16px; /* Default sizing for titles */
  pointer-events: none; /* Optional: Makes title unclickable labels */
}

/* The Sub-menu (The list of links under a title) */
ul.footer-menu-flex > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

/* The Items (The actual links) */
/* Matches .footer-item */
ul.footer-menu-flex > li > ul > li a {
  font-size: 14px;
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

ul.footer-menu-flex > li > ul > li a:hover {
  color: var(--white);
}

/* 4. Footer Bottom Section */
.footer-bottom {
  width: var(--footer-max-width);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px 16px 16px;
/*   margin-top: var(--spacing-md); */
}

.footer-credit {
  font-size: 14px;
  color: var(--footer-text);
}

.footer-payment img {
  height: 50px;
}

/* 4 columns by default (above 800px) */
ul.footer-menu-flex > li {
  display: flex !important;
  flex-direction: column !important;
  gap: var(--spacing-xs) !important;
  flex: 0 0 calc(25% - var(--spacing-md)) !important;
}

/* 2 columns at 800px and below */
@media screen and (max-width: 800px) {
  ul.footer-menu-flex > li {
    flex: 0 0 calc(50% - var(--spacing-md)) !important;
  }

    ul.footer-menu-flex {
    gap: 32px !important;
		
  }
  .footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
}

.footer-payment {
    margin-left: -19px;
}
}

/* 1 column at 600px and below */
@media screen and (max-width: 600px) {
  ul.footer-menu-flex > li {
    flex: 0 0 100% !important;
  }
  
  /* Optional: center align on mobile */
  ul.footer-menu-flex {
    gap: 32px !important;
/* 	      flex-direction: column; */
  }
	

}


/* ============================================
     WORDPRESS MENU ADAPTERS
     ============================================ */
/* Top Bar Menu */
.header-top-menu ul {
    display: flex;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-top-menu li a {
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* Main Header Nav */
.header-nav-menu ul {
    display: flex;
/*     gap: var(--spacing-lg); */
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-nav-menu li a {
    color: var(--white);
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    cursor: pointer;
    text-decoration: none;
}

/* HERO */


.hero {
  width: 100%;
  min-height: 450px;
  display: flex;
  justify-content: center;
  background-image: url(/wp-content/uploads/2025/12/hero.jpg);
  background-position-y: 526px;
  background-size: inherit;
  position: relative;
}

.hero-content {
  max-width: var(--max-width);
  width: -webkit-fill-available;
  padding: var(--spacing-xl);
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  display: flex;
  gap: var(--spacing-sm);
  flex-direction: column;
  color: var(--white);
}

.hero-title {
  font-size: 40px;
  max-width: 370px;
  line-height: 125%;
}

.hero-paragraph {
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
}