﻿:root {
    --grey: #4A4A4A;
    --blue-primary: #337AB7;
    --lightblue: #ACBCD5;
    --bg-blue: #E9F4F8;
    --border-color: #DEE2E6;
    --bg-light: #fafafa;
    --purple: #BFAEE0;
    --red: #D32F2F;
    --green: #81C784;
    --yellow: #F9C74F;
    --header: #f7f7f7;
    --primary-color: var(--blue-primary);
    --secondary-color: var(--purple);
    --accent-color: var(--lightblue);
    --text-dark: var(--grey);
    --text-light: var(--bg-light);
    --surface-color: #ffffff;
    --error-color: var(--red);
    --success-color: var(--green);
    --warning-color: var(--yellow);
    --shadow: 0 4px 20px rgba(74, 74, 74, 0.1);
    --shadow-sm: 0 2px 8px rgba(74, 74, 74, 0.08);
    --shadow-lg: 0 8px 30px rgba(74, 74, 74, 0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
}

/* BASE STYLES */
body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER STYLES */
.main-header {
    background-color: var(--header);
    color: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 64px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* LOGO */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 220px; /* eller 200px, välj vad som passar logon */
    padding-right: 0;
}

    .logo-container a {
        display: inline-block;
        cursor: pointer;
        max-height: 100%;
    }

        .logo-container a:hover .logo-image {
            opacity: 0.9;
        }

.logo-image {
    max-height: 100%;
    transform-origin: left center;
    margin-left: 1rem;
}

/* ADMIN BUTTON */
.admin-button-container {
    margin-right: 1rem;
}

.admin-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.9rem;
}

    .admin-button:hover {
        background-color: var(--bg-blue);
    }

.admin-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* MENU DROPDOWN */
.menu-dropdown {
    position: relative;
    margin-right: 1rem;
}

.menu-button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .menu-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
    }

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--surface-color);
    min-width: 160px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 10;
    margin-top: 0.5rem;
}

.menu-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

    .menu-item:hover {
        background-color: var(--bg-blue);
        color: var(--blue-primary);
    }

/* CULTURE SELECTOR */
.culture-selector-container {
    margin-right: 1rem;
}

.culture-selector {
    position: relative;
}

.culture-dropdown {
    position: relative;
    display: inline-block;
}

.culture-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.9rem;
}

    .culture-button:hover {
        background-color: var(--bg-blue);
    }

.culture-flag {
    width: 20px;
    height: auto;
}

.culture-name {
    font-weight: 500;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    border: solid var(--text-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 2px;
    opacity: 0.7;
}

.culture-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    min-width: 120px;
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 100;
    margin-top: 0.25rem;
}

.culture-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

    .culture-option:hover {
        background-color: var(--bg-blue);
    }

    .culture-option.selected {
        background-color: rgba(51, 122, 183, 0.08);
        font-weight: 600;
        color: var(--blue-primary);
    }

/* MAIN CONTENT */
.site-main {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* FOOTER */
.main-footer {
    background-color: var(--header);
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 2rem;
    margin-bottom: 1rem;
}

.footer-info {
    text-align: center;
}

/* PRODUCTS PAGE */
.modern-products-page {
    background-color: var(--bg-light);
    min-height: 100vh;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: -2rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

    .carousel-item.active {
        opacity: 1;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(51, 122, 183, 0.8), rgba(172, 188, 213, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 0.3s;
    }

    .hero-content p {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 0.5s;
    }

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 8rem;
    animation: bounce 2s infinite;
    opacity: 0.8;
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

    .scroll-arrow:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

.scroll-arrow-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

/* INFO BOXES */
.info-boxes-section {
    padding: 2rem 0;
    background-color: rgba(233, 244, 248, 0.65);
    box-shadow: var(--shadow), 0 -5px 20px rgba(0, 0, 0, 0);
    position: relative;
    z-index: 3;
    margin-top: -120px;
    border-radius: var(--radius) var(--radius) 0 0;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(2rem);
}

.info-box-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.modern-info-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: .5rem;
    width: 95%;
    margin: 0 auto;
}

.info-box {
    background: var(--surface-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
    border: 1px solid var(--border-color);
}

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.info-box-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.info-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
}

.info-box.expanded .info-details {
    height: auto;
    opacity: 1;
    margin-top: 1rem;
}

.info-details p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.icon-verified,
.icon-shield,
.icon-category,
.icon-support {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-verified {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M23 12l-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z'/%3E%3C/svg%3E");
}

.icon-shield {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.icon-category {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z'/%3E%3C/svg%3E");
}

.icon-support {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z'/%3E%3C/svg%3E");
}

.info-box-inner .info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-box .info-icon div {
    transition: var(--transition);
}

.info-box:hover .info-icon div {
    transform: scale(1.1);
}

/* CONTROLS CONTAINER */
.controls-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

.search-sort-card {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.search-sort-content {
    padding: .5rem;
}

.search-sort-grid {
    display: flex;
    justify-content: space-between; /* Space elements to opposite sides */
    align-items: center; /* Align items vertically in the center */
    flex-wrap: wrap;
    gap: 1.5rem;
}

.search-sort-column {
    display: flex; /* Make each column a flex container */
    align-items: center; /* Center content vertically */
}

.sorting-column {
    flex: 1;
    justify-content: flex-start; /* Push sorting controls to the left */
    min-width: 300px;
}

.search-column {
    justify-content: flex-end; /* Push search to the right */
    min-width: 200px;
    max-width: 350px;
}

/* SORTING CONTROLS */
.modern-sorting-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    height: 100%;
}

.sort-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
    margin-right: 0.5rem;
}

    .sort-title span {
        margin-left: 0.5rem;
        font-size: 1rem;
    }

.sort-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.sort-button {
    min-width: 120px;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    height: 41px; /* Fixed height to match search input */
}

    .sort-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        background-color: rgba(51, 122, 183, 0.04);
    }

    .sort-button.active-sort {
        color: var(--blue-primary);
        font-weight: 600;
        background-color: rgba(51, 122, 183, 0.08);
        border-color: var(--blue-primary);
        box-shadow: 0 3px 8px rgba(51, 122, 183, 0.2);
    }

.sort-icon {
    margin-left: 0.5rem;
}

/* SEARCH INPUTS */
.modern-search {
    display: flex;
    width: 100%;
    height: 100%;
}

.search-input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 1.5rem;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition);
    color: var(--text-dark);
    outline: none;
}

    .search-input:focus {
        border-color: var(--blue-primary);
        box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.2);
    }

    .search-input::placeholder {
        color: var(--grey);
        opacity: 0.6;
    }

.clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
    z-index: 1;
}

    .clear-search:hover {
        opacity: 1;
    }

/* PRODUCTS CONTAINER */
.products-container {
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    overflow: hidden;
}

    .product-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* PRODUCT CARD */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--surface-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    transform: translateZ(0);
    max-width: 400px;
    margin: 0 auto;
    height: 26rem;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.product-card-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    min-height: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
}

.product-info-row {
    display: flex;
    align-items: center;
    font-size: 0.925rem;
    color: var(--text-dark);
}

.product-info-text {
    flex: 1;
}

/* PRODUCT CLASS BADGES */
.product-class-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    height: 3rem;
    width: 3rem;
    transition: transform 0.2s ease-in-out;
    z-index: 25;
    cursor: pointer;
}

    .product-class-badge:hover {
        transform: scale(1.1);
    }

.product-class-image {
    height: 100%;
    width: 100%;
    display: block;
}

.product-class-popover {
    position: absolute;
    top: .1rem;
    left: 0.1rem;
    background-color: var(--surface-color);
    padding: 0.1rem;
    z-index: 50;
    min-width: 200px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

    .product-class-popover.popover-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* PRODUCT CLASS DETAILS */
.product-class-details {
    z-index: 9999999;
    background-color: var(--surface-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    padding: 1rem;
}

.product-class-content {
    color: var(--text-dark);
    opacity: 0.8;
}

.product-class-list {
    list-style-type: none;
    padding-left: 0.5rem;
    margin: 0;
}

    .product-class-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        font-size: 0.9rem;
    }

        .product-class-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--blue-primary);
        }

/*PRODUCT DETAILS*/
.product-details-page {
    background-color: var(--bg-light);
    min-height: 100vh;
    padding: 2rem 0;
}

.product-details-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.product-header {
    position: relative;
    margin-bottom: 1.5rem;
    height: 40px;
    display: flex;
    align-items: center;
}

.back-button {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

    .back-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.back-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.edit-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--blue-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    margin-left: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

    .edit-button:hover {
        background-color: #2a69a2;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.product-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-info-panel {
    flex: 1;
    min-width: 280px;
    background-color: var(--blue-primary);
    color: white;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 400px;
    position: relative;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-panel {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-hint {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-action {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

    .contact-action:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
    }

.contact-icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.product-image-panel {
    flex: 2;
    min-width: 300px;
    height: 29.1rem;
    position: relative;
}

.product-images-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: #f0f0f0;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .carousel-image.active {
        opacity: 1;
    }

    .carousel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-bullets {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.carousel-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

    .carousel-bullet.active {
        background-color: white;
        transform: scale(1.2);
    }

.image-thumbnails {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    z-index: 3;
}

.image-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
    background-color: white;
    box-shadow: var(--shadow-sm);
}

    .image-thumbnail:hover {
        opacity: 0.9;
    }

    .image-thumbnail.active {
        opacity: 1;
        border-color: var(--blue-primary);
    }

    .image-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-details-card {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.product-tabs {
    width: 100%;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.product-tab {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    opacity: 0.7;
}

    .product-tab:hover {
        background-color: rgba(0, 0, 0, 0.02);
        opacity: 0.9;
    }

    .product-tab.active {
        border-bottom-color: var(--blue-primary);
        opacity: 1;
        color: var(--blue-primary);
    }

.tab-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.info-tab-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

.services-tab-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M13.7 19C13.9 19.3 14 19.6 14 20C14 21.1 13.1 22 12 22S10 21.1 10 20C10 19.6 10.1 19.3 10.3 19H2V18C2 16.3 3.3 15 5 15H19C20.7 15 22 16.3 22 18V19H13.7M18.9 6.5C19.5 7.3 19.5 8.7 18.9 9.5L15.5 14H13V11.5L16.5 7C16.8 6.7 17.3 6.7 17.6 7C17.9 7.3 17.9 7.8 17.6 8.1L14.5 12H15.5L18.5 8C18.8 7.5 18.9 7 18.9 6.5M9.5 6C10.3 6 11 6.7 11 7.5C11 8.3 10.3 9 9.5 9S8 8.3 8 7.5C8 6.7 8.7 6 9.5 6Z'/%3E%3C/svg%3E");
}

.docs-tab-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M14 2H6C4.9 2 4 2.9 4 4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V8L14 2M18 20H6V4H13V9H18V20M9 13H15V15H9V13M9 17H15V19H9V17M9 9H11V11H9V9Z'/%3E%3C/svg%3E");
}

.tab-content {
    display: none;
    padding: 1.5rem;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
}

    .tab-content.active {
        display: block;
    }

.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-column {
    flex: 1;
    min-width: 280px;
}

.info-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}

.info-text {
    font-family: 'Roboto Slab', serif;
    font-size: 95%;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content {
    font-family: 'Roboto Slab', serif;
    font-size: 95%;
    color: var(--text-dark);
    line-height: 1.5;
    white-space: pre-wrap;
}

.specs-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.specs-column {
    flex: 1;
    min-width: 200px;
}

.spec-item {
    margin-bottom: 1rem;
}

.spec-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.spec-value {
    font-family: 'Roboto Slab', serif;
    font-size: 95%;
    color: var(--text-dark);
}

.quote-style {
    font-family: 'Roboto Slab', serif;
    font-size: 95%;
}

.notification {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: bottom 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

    .notification.show {
        bottom: 20px;
    }

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(51, 122, 183, 0.1);
    border-left-color: var(--blue-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.loading-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* CONTACT PANEL */
.contact-panel {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.contact-form-field {
    margin-bottom: 1rem;
    text-align: left;
}

    .contact-form-field label {
        display: block;
        margin-bottom: 0.25rem;
        color: white;
        font-size: 0.9rem;
    }

.contact-input {
    width: 100%;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transition: var(--transition);
}

    .contact-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .contact-input:focus {
        outline: none;
        background-color: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
    }

.contact-textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-panel {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-hint {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-action {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .contact-action:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

.contact-icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.contact-pulse {
    animation: contact-pulse 0.8s;
}

.notification {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: bottom 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

    .notification.show {
        bottom: 20px;
    }

/* ICONS */
.product-info-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-euro {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M15 18.5A6.48 6.48 0 0 1 9.24 15H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24A6.49 6.49 0 0 1 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.99 8.99 0 0 0 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06a8.262 8.262 0 0 0 0 2H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57Z'/%3E%3C/svg%3E");
}

.icon-calendar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zM7 12h5v5H7v-5z'/%3E%3C/svg%3E");
}

.icon-weight {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z'/%3E%3C/svg%3E");
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}

.icon-search-off {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 0 0 9.5 3 6.5 6.5 0 0 0 3 9.5 6.5 6.5 0 0 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2-5h4v1h-4V9z'/%3E%3C/svg%3E");
    width: 32px;
    height: 32px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-sort {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}

.icon-arrow-up {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}

.icon-arrow-down {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5A6.5 6.5 0 0 0 9.5 3C6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5C11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
}

.clear-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
}

/* IMAGE REEL LOADER */
.loader {
    width: 120px;
    height: 80px;
    position: relative;
    transform: rotate(-90deg);
    background: linear-gradient(174deg, #0000 49%, var(--blue-primary) 50%, #0000 51%);
    margin: 0 auto 2rem;
}

    .loader:after,
    .loader:before {
        content: "";
        border-radius: 100%;
        width: 35px;
        height: 35px;
        display: block;
        position: absolute;
        border: 4px dashed #fff;
        bottom: 49px;
        transform: rotate(0deg);
        box-sizing: border-box;
        animation: tape 4s linear infinite;
    }

    .loader:before {
        right: -14px;
        box-shadow: 0 0 0 4px #fff, 0 0 0 34px var(--blue-primary), 0 0 5px 34px rgba(51, 122, 183, 0.3);
    }

    .loader:after {
        left: -13px;
        box-shadow: 0 0 0 4px #fff, 0 0 0 65px var(--blue-primary), 0 0 5px 65px rgba(51, 122, 183, 0.3);
    }

/* LOADING AND NO RESULTS STATES */
.no-results {
    opacity: 0.7;
    color: var(--grey);
}

.no-results-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background-color: rgba(74, 74, 74, 0.1);
    border-radius: 50%;
}

.no-results-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.no-results-text {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
    padding: 2rem;
}

.loading-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 1.5rem;
}

/* ADMIN PAGE STYLES */
.admin-page {
    background-color: var(--bg-light);
    padding: 1.5rem;
}

.admin-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
}

.admin-user-info {
    display: flex;
    align-items: center;
}

.admin-username {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.admin-divider {
    width: 1px;
    height: 2rem;
    background-color: var(--border-color);
    margin: 0 1.5rem;
}

.admin-company-selector {
    flex: 1;
}

.admin-content-card {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.admin-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.create-button {
    background-color: var(--blue-primary);
    color: white;
}

    .create-button:hover {
        background-color: #2a69a2;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.button-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.create-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
}

.admin-spacer {
    flex: 1;
}

.admin-search-input {
    width: 100%;
    padding: 0.65rem 0.75rem 0.65rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition);
    color: var(--text-dark);
    min-width: 250px;
}

    .admin-search-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.2);
        border-color: var(--blue-primary);
    }

.admin-data-grid {
    width: 100%;
    overflow-x: auto;
    min-height: 400px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        background-color: var(--bg-light);
        color: var(--text-dark);
        font-weight: 600;
        text-align: left;
        padding: 0.85rem 1rem;
        border-bottom: 2px solid var(--border-color);
        position: sticky;
        top: 0;
        cursor: pointer;
        user-select: none;
        transition: var(--transition);
        white-space: nowrap;
    }

        .admin-table th:hover {
            background-color: rgba(51, 122, 183, 0.05);
        }

    .admin-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
    }

.clickable-row {
    cursor: pointer;
    transition: var(--transition);
}

    .clickable-row:hover {
        background-color: rgba(51, 122, 183, 0.05);
    }

.sort-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.6;
}

.sort-asc {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sort-desc {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.admin-pagination {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pagination-info {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ADMIN EDIT PAGE STYLES */
.admin-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 2fr;
    gap: 1.5rem;
}

.card {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.back-button {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

    .back-button:hover {
        background-color: var(--bg-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.preview-button {
    background-color: var(--blue-primary);
    color: white;
}

    .preview-button:hover {
        background-color: #2a69a2;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.delete-button {
    background-color: var(--red);
    color: white;
}

    .delete-button:hover {
        background-color: #b71c1c;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.back-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E");
}

.preview-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
}

.delete-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z'/%3E%3C/svg%3E");
}

.unauthorized-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    text-align: center;
}

.unauthorized-content {
    max-width: 600px;
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.unauthorized-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23D32F2F' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.unauthorized-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.unauthorized-text {
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ADMIN IMAGE COMPONENT STYLES */
.admin-image-component {
    width: 100%;
}

.image-component-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
    gap: 0.5rem;
    width: 100%;
}

.image-item {
    aspect-ratio: 1/1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .image-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .image-item.selected {
        border-color: var(--blue-primary);
        box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.3);
    }

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.primary-badge {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    z-index: 10;
    background-color: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.image-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.primary-button {
    background-color: var(--blue-primary);
    color: white;
}

    .primary-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
        color: #666;
        transform: none;
        box-shadow: none;
    }

    .primary-button:hover:not(:disabled) {
        background-color: #2a69a2;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.file-input-wrapper {
    position: relative;
}

.file-upload-container {
    position: relative;
    margin-top: 1rem;
    width: 100%;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-dropzone {
    display: block;
    cursor: pointer;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: var(--bg-light);
}

    .file-dropzone:hover, .dropzone-active {
        border-color: var(--blue-primary);
        background-color: rgba(51, 122, 183, 0.05);
    }

.upload-icon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.upload-text {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.8;
}

.file-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.file-name-chip {
    background-color: rgba(51, 122, 183, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--blue-primary);
}

.upload-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 5;
}

.button-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.upload-button {
    min-width: 100px;
    position: relative;
}

    .upload-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
        color: #666;
        transform: none;
        box-shadow: none;
    }

    .upload-button:hover:not(:disabled) {
        background-color: #2a69a2;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.clear-button {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

    .clear-button:disabled {
        background-color: #f5f5f5;
        cursor: not-allowed;
        color: #ccc;
        transform: none;
        box-shadow: none;
        border-color: #e0e0e0;
    }

    .clear-button:hover:not(:disabled) {
        background-color: var(--bg-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.star-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.textarea-field {
    margin-bottom: 1.5rem;
    width: 100%;
}

    .textarea-field label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .textarea-field textarea {
        width: 100%;
        min-height: 120px;
        padding: 0.75rem;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        background-color: var(--bg-light);
        font-family: 'Roboto', sans-serif;
        font-size: 0.95rem;
        line-height: 1.5;
        resize: vertical;
        color: var(--text-dark);
        transition: var(--transition);
    }

        .textarea-field textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.2);
            border-color: var(--blue-primary);
        }

    .textarea-field .field-helper {
        margin-top: 0.25rem;
        font-size: 0.8rem;
        color: var(--text-dark);
        opacity: 0.7;
    }

/* ADMIN FORM COMPONENT */
.admin-form-component {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-column {
    width: 100%;
}

    .form-column.full-width {
        grid-column: span 2;
    }

.form-field {
    margin-bottom: 1.25rem;
}

    .form-field label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

.form-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition);
    color: var(--text-dark);
}

    .form-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.2);
        border-color: var(--blue-primary);
    }

.form-textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition);
    color: var(--text-dark);
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

    .form-textarea:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.2);
        border-color: var(--blue-primary);
    }

.input-with-icon {
    position: relative;
}

    .input-with-icon .form-input {
        padding-right: 2.5rem;
    }

.input-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.7;
}

.person-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
}

.location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}

.euro-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M15 18.5A6.48 6.48 0 0 1 9.24 15H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24A6.49 6.49 0 0 1 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.99 8.99 0 0 0 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06a8.262 8.262 0 0 0 0 2H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57Z'/%3E%3C/svg%3E");
}

.save-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z'/%3E%3C/svg%3E");
}

.input-with-addon {
    position: relative;
    display: flex;
}

    .input-with-addon .form-input {
        flex: 1;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.input-addon {
    padding: 0.65rem 0.75rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    min-width: 50px;
    justify-content: center;
}

.radio-group-label {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: block;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.radio-item {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

    .radio-item input[type="radio"] {
        margin-right: 0.5rem;
    }

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* ABOUT US BUTTON */
.about-button-container {
    margin-right: 1rem;
}

.about-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.9rem;
}

    .about-button:hover {
        background-color: var(--bg-blue);
    }

.about-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* MODAL STYLES */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

    .modal-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

.modal-container {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 70%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-backdrop.show .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

    .modal-close:hover {
        opacity: 1;
    }

.close-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234A4A4A' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.about-us-content {
    padding: 1.5rem;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-us-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-title {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-members-container {
    margin-bottom: 2rem;
}

.team-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 33%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-member-center {
    margin-top: 20px;
}

.team-member-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .team-member-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-details {
    padding: 1rem;
    background-color: #f0f8ff;
}

.member-name {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-us-footer {
    margin-top: 2rem;
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.company-info {
    flex: 1;
}

.used-equipment-title {
    color: #0078d4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    background-color: #0078d4;
    position: relative;
    border-radius: 4px;
}

    .feature-checkbox:after {
        content: "";
        position: absolute;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        top: 3px;
        left: 7px;
        transform: rotate(45deg);
    }

.feature-item span {
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

.visit-button {
    display: inline-flex;
    align-items: center;
    background-color: #e6ebf2;
    color: #333;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .visit-button:hover {
        background-color: #d1dbe8;
        text-decoration: none;
        color: #333;
    }

.visit-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    position: relative;
}

    .visit-arrow:after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border: solid #333;
        border-width: 0 2px 2px 0;
        top: 3px;
        left: 0;
        transform: rotate(-45deg);
    }

.company-video-container {
    flex: 1;
    min-width: 300px;
}

.company-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SNACKBAR */
.blazor-snackbar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 90%;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}

    .blazor-snackbar.show {
        bottom: 20px;
        opacity: 1;
    }

.snackbar-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.snackbar-icon {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.snackbar-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.snackbar-close {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 0.25rem;
    opacity: 0.7;
    transition: var(--transition);
}

    .snackbar-close:hover {
        opacity: 1;
    }

/* Snackbar Colors */
.blazor-snackbar.success {
    border-left: 4px solid var(--success-color);
}

.blazor-snackbar.error {
    border-left: 4px solid var(--error-color);
}

.blazor-snackbar.warning {
    border-left: 4px solid var(--warning-color);
}

.blazor-snackbar.info {
    border-left: 4px solid var(--primary-color);
}

.success-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2381C784' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.error-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23D32F2F' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.warning-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F9C74F' d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.info-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23337AB7' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* COLOR UTILITY CLASSES */
.status-success {
    color: var(--green);
}

.status-warning {
    color: var(--yellow);
}

.status-error {
    color: var(--red);
}

.status-info {
    color: var(--blue-primary);
}

.status-neutral {
    color: var(--grey);
}

.bg-success {
    background-color: var(--green);
}

.bg-warning {
    background-color: var(--yellow);
}

.bg-error {
    background-color: var(--red);
}

.bg-info {
    background-color: var(--blue-primary);
}

.bg-neutral {
    background-color: var(--grey);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes contact-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes tape {
    0% {
        transform: rotate(0deg) scale(0.4)
    }

    100% {
        transform: rotate(-360deg) scale(0.4)
    }
}
