        :root {
            --primary: #e63946;
            --dark: #2b2d42;
            --light: #f8f9fa;
            --gray: #8d99ae;
            --success: #4ade80;
        }

.faq-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gray);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 1rem !important;
  width: fit-content;
  gap: 8px;
  will-change: transform;
  backface-visibility: hidden;
}

.giveaway-actions .btn {
  width: 100%;
}

.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  vertical-align: middle;
  justify-self: center;
  line-height: 1;
  will-change: transform;
  backface-visibility: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn:disabled {
  background-color: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn:disabled:hover i {
  transform: none;
}

        .btn-secondary {
            background-color: var(--gray);
        }

        .btn-secondary:hover {
            background-color: var(--dark);
        }

        .btn-danger {
            background-color: #dc3545;
        }

        .btn-warning {
            background-color: #ffc107;
        }

        .btn-success {
            background-color: #28a745;
        }

        /* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-select:hover,
.dropdown-select:focus {
    border-color: var(--primary);
    outline: none;
}

.dropdown-select .selected-text {
    color: var(--dark);
}

.dropdown-select .placeholder {
    color: var(--gray);
}

.dropdown-arrow {
    display: flex;
    color: var(--gray);
}

.dropdown-arrow i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    will-change: transform;
}

.dropdown-arrow i.rotated {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.dropdown-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
	overflow-y: auto;
}

.dropdown-option {
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: rgba(230, 57, 70, 0.05);
    color: var(--primary);
    padding-left: 1.2rem;
}

.dropdown-option.selected {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-weight: 600;
}


        .popup-store-name a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.popup-store-name a:hover {
    text-decoration: underline;
}

.popup-store-email {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    gap: 5px;
}

.popup-store-email a {
    color: var(--primary);
    text-decoration: none;
}

.popup-store-email a:hover {
    text-decoration: underline;
}

        /* Aangepaste stijlen voor de kaart */
        .leaflet-control-zoom a {
            background-color: white !important;
            color: var(--dark) !important;
            border: 1px solid rgba(0,0,0,0.1) !important;
            border-radius: 4px !important;
            font-weight: bold !important;
        }

        .leaflet-control-zoom a:hover {
            background-color: var(--primary) !important;
            color: white !important;
        }

        .leaflet-popup-content-wrapper {
            border-radius: 12px !important;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
        }

        .custom-popup {
            min-width: 250px;
        }

        .popup-store-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .popup-store-address {
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .popup-store-contact {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }