/* Reset und Basis-Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Ecru Farbpalette */
:root {
  --ecru-50: #4a4238;
  --ecru-100: #4a4238;
  --ecru-200: #8e8e8e;
  --ecru-300: #4a4238;
  --ecru-400: #d2b980;
  --ecru-500: #c4a35e;
  --ecru-600: #494949;
  --ecru-700: #555554;
  --ecru-800: #95928a;
  --ecru-900: black;
  --ecru-950: rgb(0, 0, 0);
  --white: #aaa9a8;
}

body {
  background-color: #6a645f;
  color: white;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header und Navigation */
header {
  background-color: var(--ecru-200);
  border-bottom: 1px solid var(--ecru-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.logo svg {
  margin-right: 10px;
  fill: var(--ecru-800);
}

nav ul {
  display: none;
  list-style: none;
}

.product-image,
#blummen-btn_2,
#conntact-btn_2,
#blummen-btn,
#conntact-btn {
  cursor: pointer !important;
}

@media (max-width: 640px) {
  .logo {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  nav ul {
    display: flex;
    gap: 30px;
  }
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--ecru-950);
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--ecru-800);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.cart-button {
  display: flex;
  align-items: center;
  background-color: #555554;
  border: 1px solid #555554;
  color: rgb(255, 255, 255);
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-button:hover {
  background-color: var(--ecru-200);
}

.cart-button svg {
  margin-right: 8px;
}

.cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ecru-800);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 8px;
}

/* Button Animationen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ecru-800);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--ecru-900);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.btn-outline {
  background-color: var(--ecru-100);
  color: var(--ecru-900);
  border: 1px solid var(--ecru-300);
}

.btn-outline:hover {
  background-color: var(--ecru-200);
}

.btn-click {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Hero Section */
.hero {
  background-color: var(--ecru-200);
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    padding: 50px;
  }
}

.hero-content {
  flex: 1;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-content {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--ecru-950);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero p {
  color: var(--ecru-950);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
  margin-bottom: 50px;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: white;
  border-radius: 8px;
  border: 1px solid var(--ecru-200);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--ecru-800);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  animation: pulse 2s infinite;
}

.product-sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #c0392b;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.product-info {
  padding: 15px;
}

.product-name {
  font-weight: 500;
  color: var(--ecru-900);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--ecru-700);
}

.product-category {
  color: var(--ecru-600);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.product-price {
  font-weight: bold;
  color: var(--ecru-900);
}

.product-old-price {
  text-decoration: line-through;
  color: var(--ecru-600);
  font-size: 0.875rem;
  margin-right: 5px;
}

.view-more {
  text-align: center;
  margin-top: 30px;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-tab {
  padding: 8px 16px;
  background-color: #575757;
  border: 1px solid var(--ecru-300);
  border-radius: 20px;
  color: var(--ecru-800);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover {
  background-color: var(--ecru-200);
}

.category-tab.active {
  background-color: var(--ecru-800);
  color: white;
}

/* Features Section */
.features {
  background-color: var(--ecru-200);
  border-radius: 8px;
  padding: 30px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--ecru-800);
  border: 1px solid var(--ecru-800);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
}

/* Seasonal Section */
.seasonal {
  background-color: var(--ecru-200);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.seasonal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 768px) {
  .seasonal {
    flex-direction: row;
    padding: 50px;
  }
}

.seasonal-image {
  flex: 1;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.seasonal-image:hover {
  transform: translateY(-10px);
}

@media (min-width: 768px) {
  .seasonal-image {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.seasonal-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.seasonal-content {
  flex: 1;
}

.seasonal h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--ecru-950);
}

#footer-impressum-link {
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--ecru-200);
  border-top: 1px solid var(--ecru-200);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-heading {
  font-weight: bold;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-heading svg {
  margin-right: 8px;
}

footer p {
  color: black;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

footer a:hover {
  color: var(--ecru-950);
}

footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--ecru-800);
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ecru-200);
  color: var(--ecru-800);
}

/* Adresse im Footer vom Shop */
.shop-address {
  margin-top: -16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

/* Product Detail Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: white;
  margin: 50px auto;
  width: 90%;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-image {
  padding: 20px;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.modal-image img:hover {
  transform: scale(1.05);
}

.modal-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ecru-800);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--ecru-950);
}

.modal-category {
  font-size: 0.875rem;
  color: var(--ecru-600);
  margin-bottom: 5px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--ecru-900);
  margin-bottom: 15px;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ecru-900);
  margin-bottom: 5px;
}

.modal-old-price {
  text-decoration: line-through;
  color: var(--ecru-600);
  font-size: 1.1rem;
  margin-right: 10px;
}

.modal-tax {
  font-size: 0.875rem;
  color: var(--ecru-600);
  margin-bottom: 20px;
}

.modal-description {
  color: var(--ecru-800);
  margin-bottom: 20px;
  line-height: 1.6;
}

.quantity-control {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-label {
  margin-right: 15px;
  color: black;
}

.quantity-buttons {
  display: flex;
  align-items: center;
  border: 1px solid var(--ecru-300);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ecru-800);
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: var(--ecru-100);
}

.quantity-value {
  padding: 0 15px;
  border-left: 1px solid var(--ecru-300);
  border-right: 1px solid var(--ecru-300);
  color: black;
}

.modal-add-to-cart {
  margin-top: auto;
}

.modal-details {
  margin-top: 30px;
  border-top: 1px solid var(--ecru-200);
  padding-top: 20px;
}

.modal-details h3 {
  font-weight: 600;
  color: var(--ecru-900);
  margin-bottom: 10px;
  display: none;
}

.modal-details ul {
  list-style-type: disc;
  padding-left: 20px;
  color: black;
}

.modal-details li {
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal-details li.visible {
  opacity: 1;
  transform: translateY(0);
  display: none;
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: #aaa9a8;
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-modal.show {
  display: block;
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--ecru-800);
}

.cart-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ecru-900);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: black;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: var(--ecru-950);
}

.cart-empty {
  text-align: center;
  padding: 50px 20px;
}

.cart-empty p {
  color: black;
  margin-bottom: 20px;
}

.cart-items {
  padding: 20px;
  max-height: calc(100% - 200px);
  overflow-y: auto;
}

.cart-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ecru-200);
  transition: all 0.3s ease;
}

.cart-item.removing {
  opacity: 0;
  transform: translateX(-20px);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 15px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  color: var(--ecru-900);
  margin-bottom: 5px;
}

.cart-item-category {
  font-size: 0.875rem;
  color: var(--ecru-600);
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--ecru-300);
  border-radius: 4px;
  overflow: hidden;
}

.cart-quantity-btn {
  background: none;
  border: none;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ecru-800);
  transition: background-color 0.3s ease;
}

.cart-quantity-btn:hover {
  background-color: var(--ecru-100);
}

.cart-quantity-value {
  padding: 0 10px;
  border-left: 1px solid var(--ecru-300);
  border-right: 1px solid var(--ecru-300);
  color: var(--ecru-900);
  font-size: 0.875rem;
}

.cart-item-price {
  font-weight: 500;
  color: var(--ecru-900);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--ecru-600);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--ecru-900);
}

.cart-item-remove svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.cart-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid var(--ecru-200);
  padding: 20px;
}

.cart-summary {
  margin-bottom: 20px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ecru-800);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--ecru-900);
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--ecru-200);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
}

.toast {
  background-color: white;
  border-left: 4px solid var(--ecru-800);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 15px 20px;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 350px;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--ecru-900);
  margin-bottom: 5px;
}

.toast-message {
  color: var(--ecru-800);
  font-size: 0.875rem;
}

.toast-close {
  background: none;
  border: none;
  color: var(--ecru-600);
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.toast-close:hover {
  color: var(--ecru-900);
}

/* Mobile Menu */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 900;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  display: block;
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--ecru-800);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--ecru-950);
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-items a {
  color: var(--ecru-800);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--ecru-200);
  transition: color 0.3s ease;
}

.mobile-menu-items a:hover {
  color: var(--ecru-950);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.show {
  display: block;
  opacity: 1;
}

.cart-summary-modal {
  padding: 1rem;
  text-align: left;
}

.cart-items-list {
  margin: 1rem 0;
  max-height: 300px;
  overflow-y: auto;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.cart-summary-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
}

.summary-row.total {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 0.5rem;
  border-top: 1px solid #eee;
  padding-top: 0.5rem;
}

.datetime-picker {
  padding: 1rem;
}

.date-select,
.time-select {
  margin: 1rem 0;
  text-align: left;
}

.date-select label,
.time-select label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.date-select input,
.time-select select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.pickup-info {
  background: #f5f5f5;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  text-align: left;
}

.pickup-info p {
  margin: 0.5rem 0;
}

.contact-form {
  padding: 1rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.address-form {
  margin-top: 1.5rem;
}

.address-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

#map {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.btn,
.swal2-confirm,
.swal2-cancel,
.swal2-deny {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  background: var(--ecru-700);
  color: white;
}

/* Hover Effekt */
.btn:hover,
.swal2-confirm:hover,
.swal2-cancel:hover,
.swal2-deny:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--ecru-800);
}

/* Active/Click Effekt */
.btn:active,
.swal2-confirm:active,
.swal2-cancel:active,
.swal2-deny:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ripple Effekt */
.btn::after,
.swal2-confirm::after,
.swal2-cancel::after,
.swal2-deny::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.btn:active::after,
.swal2-confirm:active::after,
.swal2-cancel:active::after,
.swal2-deny:active::after {
  width: 200px;
  height: 200px;
}

/* Spezifische Button Stile */
.swal2-confirm {
  background: var(--ecru-700);
}

.swal2-cancel {
  background: #dc3545;
}

.swal2-deny {
  background: #6c757d;
}

/* Kleine Buttons */
.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Outline Buttons */
.btn-outline {
  background: transparent;
  border: 2px solid var(--ecru-700);
  color: var(--ecru-700);
}

.btn-outline:hover {
  background: var(--ecru-700);
  color: white;
}

/* Disabled Button State */
.btn:disabled,
.btn.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Icon Buttons */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}
