/* Reset standaard margins */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Header layout */
header {
    display: flex;
    flex-direction: column; /* Zorgt dat containers onder elkaar komen */
    width: 100%;
}

.usps_header-container {
    width: 100%;
    background-color: #78A598;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.usps-list {
    width: 1300px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
    font-family: montserrat;
    font-size: 13px;
    font-weight: 600;
}

.usps-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usps-list img {
    width: 20px;
    height: auto;
}

.menu_header-container {
    width: 1300px;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 85px;
}

.menu-items-list {
    font-family: montserrat;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.menu-items-list li {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-items-list li a {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-items-list a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.menu-items-list li:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

.menu-items-list li:hover a {
    color: #333;
    font-weight: 600;
}

/* Active state styling */
.menu-items-list li {
    background-color: transparent;
}

.menu-items-list li:has(a[aria-current="page"]) {
    background-color: #000000;
}

.menu-items-list li:has(a[aria-current="page"]) a {
    color: white;
    font-weight: 600;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 300px;
    height: auto;
    margin-top: 0;
}

.link-items-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.link-items-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: montserrat;
    font-size: 13px;
    text-align: center;
    min-width: 70px;
    gap: 4px;
    margin: 0;
    padding-top: 0;
    height: 100%;
}

.link-items-list img {
    width: 70px;
    height: 70px;
    margin-bottom: -20px;
    margin-top: -15px;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: montserrat;
    font-size: 13px;
    text-align: center;
    gap: 4px;
}

.search-menu-container {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 35px;
}

.menu-list-container {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 20px;
    gap: 50px;
}

.menu-list li {
    list-style: none;
    color: #ffffff;
    font-family: montserrat;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}

.search-bar input {
    font-family: montserrat;
    font-size: 14px;
    border-radius: 20px;
    width: 350px;
    height: 12px;
    padding: 10px;
    border: none;
    background-color: #ffffff;
    color: #333;
}

.main-content {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
}

.main-content-container {
    width: 100%;
    position: relative;
}

.main-content-image {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

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

.side-button {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right;
    
    background-color: #f26522;
    color: white;
    padding: 30px 15px;
    border: none;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-family: montserrat;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.side-button img {
    width: 24px;
    height: 24px;
    transform: rotate(0deg);
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

.side-button span {
    position: relative;
    top: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-button:hover {
    background-color: #fc8e45;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    pointer-events: none;
}

.overlay-content {
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    width: 50%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
}

.overlay-left {
    flex: 1;
    padding: 0;
    position: relative;
}

.overlay-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: montserrat;
}

.overlay-left p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-family: montserrat;
}

.shoe-categories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    padding: 0;
    gap: 0;
}

.category-card {
    flex: 1;
    position: relative;
    height: 100%;
    margin: 0;
    min-width: 300px;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1002;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 1003;
    text-align: left;
    color: white;
}

.card-content h2 {
    font-family: montserrat;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.card-content p {
    font-family: montserrat;
    font-size: 16px;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.category-card span {
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.overlay-right {
    display: none;
}

.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 1004;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.close-overlay:hover {
    color: #000;
}

.button-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1003;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .button-container {
    opacity: 1;
    transform: translateY(0);
}

.info-banner {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: none;
    padding: 0;
    border-radius: 0;
    z-index: 1005;
    box-shadow: none;
    text-align: center;
    color: white;
}

.info-banner h3 {
    font-family: montserrat;
    font-size: 42px;
    margin: 0 0 10px 0;
    color: white;
    font-weight: 600;
}

.info-banner p {
    font-family: montserrat;
    font-size: 18px;
    color: white;
    margin: 0;
    opacity: 0.9;
}

.has-dropdown {
    position: static;
    cursor: pointer;
}

.has-dropdown span {
    display: flex;
    align-items: center;
}

.has-dropdown:hover span {
    text-decoration: underline;
    color: white;
}

.has-dropdown:hover span::before {
    content: '';
    position: absolute;
    left: 0;
    right: 20px;
    bottom: 0;
    height: 1px;
    background-color: white;
}

.has-dropdown:hover span::after {
    transform: rotate(180deg);
}

.has-dropdown:hover span > span,
.has-dropdown.active span > span {
    text-decoration: underline;
}

.submenu {
    position: absolute;
    top: 100%;
    left: -100vw;
    right: -100vw;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submenu-columns {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0 20px;
}

.submenu-column {
    flex: 1;
    padding-right: 40px;
    padding-bottom: 20px;
}

.submenu-column:last-child {
    padding-left: 40px;
    padding-bottom: 20px;
    border-left: 1px solid #e0e0e0;
}

.submenu-column ul li a.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.submenu {
    margin-left: 0;
}

.submenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px; /* Consistente spacing tussen items */
}

.submenu-column ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-family: montserrat;
    transition: all 0.2s ease;
}

.submenu-column ul li a:hover {
    color: #000000;
    font-weight: 600;
}

.submenu-column ul li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.7; /* Subtielere iconen */
}

.category-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: montserrat;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.search-menu-container .menu-list li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.overlay-header {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    text-align: center;
    width: 60%;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1004;
}

.progress-line {
    height: 100%;
    width: 33.33%;
    background-color: white;
    transition: width 0.3s ease;
}

.info-tooltip {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 1003;
    width: 80%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.info-tooltip p {
    color: white;
    font-family: montserrat;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.foot-problems-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1006;
}

.foot-problems-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    pointer-events: none;
}

.foot-problems-content {
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    width: 50%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1002;
    transition: opacity 0.3s ease;
}

.has-selection .background-image::after {
    opacity: 0;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.foot-problems-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 40px;
    overflow-y: auto;
    z-index: 1003;
}

.foot-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 200px;
    padding: 0 40px;
}

.foot-problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.foot-problem-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.foot-problem-card.selected {
    background-color: #78A598;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.foot-problem-card h3 {
    font-family: montserrat;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
}

.foot-problem-card p {
    font-family: montserrat;
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
    color: white;
}

.foot-problem-card.full-width {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 25px;
    margin-top: 20px;
    height: auto;
    min-height: unset;
}

.foot-problem-card.full-width:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.foot-problem-card.full-width.selected {
    background-color: #78A598;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.foot-problem-card.full-width h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.foot-problem-card.full-width p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.foot-problems-container .info-banner h3 {
    font-family: montserrat;
    font-size: 42px;
    margin: 0 0 10px 0;
    color: white;
    font-weight: 600;
}

.foot-problems-container .info-banner p {
    font-family: montserrat;
    font-size: 18px;
    color: white;
    margin: 0;
    opacity: 0.9;
}

.foot-problems-container .info-tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: none;
}

.foot-problems-container .info-tooltip p {
    color: white;
}

.foot-problems-container .info-tooltip .info-icon {
    background-color: white;
    color: black;
}

.foot-problems-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: sticky;
    bottom: 0;
    border: none;
}

.confirm-selection {
    background-color: #f26522;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: montserrat;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-selection:hover {
    background-color: #fc8e45;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.confirm-selection:active {
    transform: translateY(0);
}

.confirm-selection:disabled {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.selected-count {
    font-family: montserrat;
    font-size: 16px;
    color: white;
}

.selection-indicator {
    border-color: rgba(255, 255, 255, 0.4);
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-family: montserrat;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1004;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateX(-3px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}

.close-foot-problems {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 1004;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-foot-problems:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    transform: rotate(90deg);
}

.foot-problems-container .progress-bar {
    background-color: rgba(255, 255, 255, 0.3);
}

.foot-problems-container .progress-line {
    background-color: white;
}

.product-recommendations-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1006;
}

.product-recommendations-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    pointer-events: none;
}

.product-recommendations-content {
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    width: 50%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
}

.product-recommendations-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 40px;
    overflow-y: auto;
    z-index: 1003;
}

.product-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 150px;
    padding: 0 100px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 50px;
    padding-right: 15px;
    padding-left: 15px;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

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

.product-info {
    padding: 20px;
    background: white;
}

.product-info h3 {
    font-family: montserrat;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.product-info .brand {
    font-family: montserrat;
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.product-info .description {
    font-family: montserrat;
    font-size: 13px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.price {
    font-family: montserrat;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-product {
    background-color: #f57b43;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-product:hover {
    background-color: #fc8e45;
    transform: translateY(-2px);
}

.close-recommendations {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 1004;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-recommendations:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    transform: rotate(90deg);
}

.category-link {
    display: block;
    cursor: pointer;
}

.category-link img {
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.category-link:hover img {
    transform: scale(1.05);
}
