/* QR Menü Welcome/Highlight Section */
.qrmenu-welcome-section {
  margin-bottom: 2.5rem;
}
.qrmenu-welcome-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: linear-gradient(120deg,rgba(255,229,229,0.92) 60%,rgba(255,255,255,0.8) 100%);
  border-radius: 2.5rem;
  box-shadow: 0 2px 8px 0 var(--theme-text-color), 0 1px 4px 0 var(--theme-text-color);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.qrmenu-welcome-content {
  flex: 1;
  min-width: 220px;
}
.qrmenu-welcome-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--theme-primary-color);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.qrmenu-welcome-desc {
  font-size: 1.18rem;
  color: var(--theme-text-color);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.qrmenu-welcome-badges {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.qrmenu-badge-green {
  background: rgba(56,161,105,0.13);
  color: #38a169;
}
.qrmenu-badge-yellow {
  background: rgba(255,183,3,0.13);
  color: var(--theme-accent-color);
}
.qrmenu-badge-red {
  background: rgba(229,62,62,0.13);
  color: var(--theme-primary-color);
}
.qrmenu-badge {
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 7px 22px;
  box-shadow: 0 1px 4px var(--theme-text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.qrmenu-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--theme-text-color);
}
.qrmenu-badge i {
  font-size: 0.9rem;
}
.qrmenu-welcome-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.qrmenu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.qrmenu-btn-primary {
  background: var(--theme-primary-color);
  color: white;
  border-color: var(--theme-primary-color);
}
.qrmenu-btn-primary:hover {
  background: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 62, 62, 0.3);
}
.qrmenu-btn-secondary {
  background: transparent;
  color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
}
.qrmenu-btn-secondary:hover {
  background: var(--theme-primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 62, 62, 0.3);
}
.qrmenu-btn i {
  font-size: 0.9rem;
}
.qrmenu-welcome-qr {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qrmenu-qr-box {
  background: var(--theme-background-color);
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px var(--theme-text-color);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.qrmenu-qr-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--theme-text-color);
}
.qrmenu-qr-label {
  margin-top: 1.1rem;
  color: var(--theme-primary-color);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.qrmenu-qr-desc {
  margin-top: 0.5rem;
  color: var(--theme-text-color);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
}

/* Responsive Design for QR Menu Welcome Section */
@media (max-width: 900px) {
  .qrmenu-welcome-banner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .qrmenu-welcome-content {
    text-align: center;
    min-width: unset;
  }
  .qrmenu-welcome-title {
    font-size: 2rem;
  }
  .qrmenu-welcome-desc {
    font-size: 1.1rem;
  }
  .qrmenu-welcome-badges {
    justify-content: center;
  }
  .qrmenu-welcome-actions {
    justify-content: center;
  }
  .qrmenu-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
  }
  .qrmenu-welcome-qr {
    flex: 0 0 auto;
  }
}
@media (max-width: 600px) {
  .qrmenu-welcome-banner {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .qrmenu-welcome-title {
    font-size: 1.8rem;
  }
  .qrmenu-welcome-desc {
    font-size: 1rem;
  }
  .qrmenu-badge {
    font-size: 0.95rem;
    padding: 6px 18px;
  }
  .qrmenu-welcome-badges {
    gap: 0.8rem;
  }
  .qrmenu-welcome-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  .qrmenu-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }
  .qrmenu-qr-box {
    padding: 1rem;
  }
  .qrmenu-qr-label {
    font-size: 1rem;
  }
  .qrmenu-qr-desc {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .qrmenu-welcome-banner {
    padding: 1.2rem;
    gap: 1.2rem;
  }
  .qrmenu-welcome-title {
    font-size: 1.6rem;
  }
  .qrmenu-welcome-desc {
    font-size: 0.9rem;
  }
  .qrmenu-badge {
    font-size: 0.9rem;
    padding: 5px 15px;
  }
  .qrmenu-welcome-badges {
    gap: 0.6rem;
  }
  .qrmenu-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
  .qrmenu-qr-box {
    padding: 0.8rem;
  }
  .qrmenu-qr-label {
    font-size: 0.95rem;
  }
  .qrmenu-qr-desc {
    font-size: 0.8rem;
  }
}

/* Featured Categories Section */
.featured-categories-section {
  margin-bottom: 2.5rem;
}
.featured-categories-title {
  color: var(--theme-primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.featured-category-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.no-featured-categories {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
  border: 2px solid var(--theme-secondary-color);
  border-radius: 2rem;
  box-shadow: 0 4px 16px var(--theme-text-color);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.no-featured-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.no-featured-content i {
  font-size: 3rem;
  color: var(--theme-accent-color);
  margin-bottom: 0.5rem;
}

.no-featured-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-primary-color);
  letter-spacing: 0.5px;
}

.no-featured-desc {
  font-size: 1.1rem;
  color: var(--theme-text-color);
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

.no-featured-subcategories {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
  border: 2px solid var(--theme-secondary-color);
  border-radius: 2rem;
  box-shadow: 0 4px 16px var(--theme-text-color);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  grid-column: 1 / -1;
  width: 100%;
}

.no-featured-products {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
  border: 2px solid var(--theme-secondary-color);
  border-radius: 2rem;
  box-shadow: 0 4px 16px var(--theme-text-color);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  grid-column: 1 / -1;
  width: 100%;
}
.category-card-featured {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 200px;
  border-radius: 2.5rem 2.5rem 2.5rem 0;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 var(--theme-primary-color), 0 1px 4px 0 var(--theme-primary-color);
  border: 2.5px solid var(--theme-secondary-color);
  background: var(--theme-background-color);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.category-card-featured:hover {
  box-shadow: 0 2px 8px 0 var(--theme-secondary-color), 0 1px 4px 0 var(--theme-secondary-color);
  transform: translateY(-6px) scale(1.03);
}
.category-card-featured .category-card-img {
  width: 180px;
  min-width: 180px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theme-primary-color) 60%, var(--theme-accent-color) 100%);
  box-shadow: 0 0 8px 0 var(--theme-text-color);
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 2.5rem;
}
.category-card-featured .category-card-img-inner {
  width: 110px;
  height: 110px;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 1px 4px var(--theme-background-color), 0 1px 4px var(--theme-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-card-img-picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.5rem;
  filter: brightness(0) invert(1);
}

.category-card-img-picture[src*=".svg"] {
  filter: brightness(0) invert(1);
  width: 70px;
  height: 70px;
}
.category-card-featured .category-card-content {
  flex: 1;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.category-card-featured .category-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.category-card-header a {
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.category-card-header a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-text-color);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-header a:hover::after {
  width: 100%;
}

.category-card-featured .category-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--theme-primary-color);
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.category-card-featured .category-card-badge {
  background: rgba(255,183,3,0.13);
  color: var(--theme-accent-color);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 7px 22px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  box-shadow: 0 1px 4px var(--theme-text-color);
}
.category-card-featured .category-card-desc {
  color: var(--theme-text-color);
  font-size: 1.18rem;
  font-weight: 600;
  text-shadow: 0 1px 0 var(--theme-background-color);
}
.category-card-featured .category-card-shortdesc {
  color: var(--theme-primary-color);
  font-size: 1.13rem;
  font-style: italic;
  background: rgba(229,62,62,0.09);
  border-radius: 0.7em;
  padding: 0.4em 1.2em;
  display: inline-block;
}
.category-card-featured .category-card-infos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}
.category-card-featured .category-card-info {
  font-size: 1.07rem;
  color: var(--theme-primary-color);
  display: flex;
  align-items: center;
  gap: 0.3em;
}

/* Featured Subcategories Section */
.featured-subcategories-section {
  margin-bottom: 2.5rem;
}
.featured-subcategories-title {
  color: var(--theme-primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
}
/* Responsive grid for featured subcategories and products */
.featured-subcategory-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .featured-subcategory-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .featured-subcategory-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.subcategory-card-featured {
  width: 100%;
  max-width: 400px;
  height: 400px;
  /* Remove min-width and min-height for better responsiveness */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(10px);
  background: var(--theme-primary-color);
  border-radius: 2.5rem;
  box-shadow: 0 1px 4px 0 var(--theme-primary-color), 0 1px 4px 0 var(--theme-primary-color);
  padding: 0;
  position: relative;
  transition: box-shadow 0.33s cubic-bezier(.4,2,.6,1), transform 0.28s cubic-bezier(.4,2,.6,1), border 0.22s, background 0.22s;
  border: 1.5px solid var(--theme-secondary-color);
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}
.subcategory-card-featured:hover {
  box-shadow: 0 32px 96px 0 #31979555, 0 12px 48px 0 var(--theme-secondary-color);
  transform: translateY(-14px) scale(1.055) rotateZ(-1.5deg);
  border-color: #319795cc;
  background: var(--theme-primary-color);
}
.subcategory-card-featured:hover::after {
  opacity: 1;
  background: linear-gradient(120deg,rgba(49,151,149,0.13) 0%,rgba(255,183,3,0.13) 100%);
}
@media (max-width: 900px) {
  .subcategory-card-featured {
    height: 340px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .subcategory-card-featured {
    height: auto;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .featured-subcategory-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.subcategory-card-featured .subcategory-card-img {
  width: 100%;
  height: 170px;
  background: var(--theme-background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.subcategory-card-featured .subcategory-card-img-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--theme-primary-color);
}
.subcategory-card-featured .subcategory-card-content {
  align-items: top;
  padding: 1.5rem 1.2rem 0 1.2rem;
  background: var(--theme-primary-color);
  border-bottom-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
}
.subcategory-card-featured .subcategory-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.subcategory-card-featured .subcategory-card-header a {
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcategory-card-featured .subcategory-card-header a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcategory-card-featured .subcategory-card-header a:hover::after {
  width: 100%;
}

.subcategory-card-featured .subcategory-card-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}
.subcategory-card-featured .subcategory-card-shortdesc {
  color: var(--theme-secondary-color);
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 0.7rem;
  background: rgba(197,48,48,0.07);
  border-radius: 0.7em;
  padding: 0.4em 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.subcategory-card-featured .subcategory-card-shortdesc-blue {
  color: #319795;
  background: rgba(49,151,149,0.07);
}

.subcategory-card-featured .subcategory-card-longdesc {
  color: #fff;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 0.7rem;
  background: rgba(197,48,48,0.07);
}

.subcategory-card-product-count {
  background: var(--theme-accent-color);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 1.2em;
  padding: 0.45em 1.3em;
  margin-top: 0.7em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  box-shadow: 0 2px 8px var(--theme-accent-color);
  letter-spacing: 0.5px;
  border: 2px solid #fff2;
  transition: background 0.18s, box-shadow 0.18s, border 0.18s;
  align-self: flex-start;
}

.subcategory-card-featured .subcategory-card-info {
  font-size: 1.13rem;
  color: #38a169;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  margin-bottom: 0.7rem;
}

/* Product Cards Section */

.product-cards-title {
  color: var(--theme-primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.product-detail-meta-value {
  display: flex;
  place-content: center;
}


@media (max-width: 900px) {
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .product-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.product-card {
  flex: 1 1 220px;
  max-width: 360px;
  min-width: 220px;
  background: var(--theme-primary-color);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px 0 var(--theme-text-color), 0 1px 4px 0 var(--theme-text-color);
  border: 2px solid var(--theme-secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.33s cubic-bezier(.4,2,.6,1), transform 0.28s cubic-bezier(.4,2,.6,1), border 0.22s, background 0.22s;
  cursor: pointer;
  padding: 0;
}
.product-card:hover {
  box-shadow: 0 32px 96px 0 #31979555, 0 12px 48px 0 var(--theme-secondary-color);
  transform: translateY(-14px) scale(1.055) rotateZ(-1.5deg);
  border-color: #319795cc;
}
@media (min-width: 1200px) {
  .product-card {
    flex-basis: calc(33.333% - 1.5rem);
    max-width: 360px;
  }
}
.product-card-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg,#fff 60%, var(--theme-accent-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-blue {
  background: linear-gradient(135deg,#fff 60%,#319795 100%);
}
.product-card-img-red {
  background: linear-gradient(135deg,#fff 60%, var(--theme-secondary-color) 100%);
}
.product-card-img-yellow {
  background: linear-gradient(135deg,#fff 60%,#ffb703 100%);
}
.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  width: 100%;
  min-height: 80px;
}
.product-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--theme-accent-color);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.product-card-title-blue {
  color: #319795;
}
.product-card-title-red {
  color: var(--theme-secondary-color);
}
.product-card-title-yellow {
  color: #ffb703;
}
.product-card-shortdesc {
  color: var(--theme-accent-color);
  font-size: 0.93rem;
  font-style: italic;
  background: rgba(255,107,53,0.07);
  border-radius: 0.7em;
  padding: 0.15em 0.7em;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.product-card-shortdesc-blue {
  color: #319795;
  background: rgba(49,151,149,0.07);
}
.product-card-shortdesc-red {
  color: var(--theme-secondary-color);
  background: rgba(197,48,48,0.07);
}
.product-card-shortdesc-yellow {
  color: #ffb703;
  background: rgba(255,183,3,0.07);
}
.product-card-infos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.product-card-info-green {
  background: rgba(56,161,105,0.13);
  color: #38a169;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 1.2rem;
  padding: 4px 14px;
}
.product-card-info-blue {
  background: rgba(49,151,149,0.13);
  color: #319795;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 1.2rem;
  padding: 4px 14px;
}
.product-card-badge {
  transition: box-shadow 0.2s, background 0.2s, opacity 0.2s, transform 0.2s;
  cursor: pointer;
  position: absolute;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 1.2rem;
  padding: 3px 12px;
  box-shadow: 0 1px 4px var(--theme-text-color);
  z-index: 2;
}
.product-card-badge:hover {
  opacity: 0.95;
  box-shadow: 0 2px 8px var(--theme-text-color), 0 1px 4px var(--theme-text-color);
  transform: scale(1.12);
  z-index: 3;
}
.product-card-price {
  background: var(--theme-accent-color);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  border-radius: 1.2rem;
  padding: 7px 22px;
  box-shadow: 0 1px 4px var(--theme-text-color);
  margin-top: 0.5rem;
  display: inline-block;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}
.product-card-price:hover {
  background: var(--theme-accent-color) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px var(--theme-text-color), 0 1px 4px var(--theme-text-color);
  transform: scale(1.12);
  z-index: 3;
}

body, html {
  background: var(--theme-background-color);
  color: var(--theme-text-color);
  font-family: var(--theme-font-family);
}

.category-card-featured .category-card-shortdesc,
.subcategory-card-featured .subcategory-card-shortdesc {
  background: var(--theme-accent-color);
  color: #fff;
}

.subcategory-card-img span[style*="background:#ffb703"],
.subcategory-card-img span.discount-badge {
  background: var(--theme-accent-color) !important;
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--theme-accent-color);
  color: #fff;
  font-size: 1.01rem;
  font-weight: 700;
  border-radius: 1.2em;
  padding: 6px 18px;
  box-shadow: 0 2px 8px var(--theme-accent-color);
  z-index: 2;
}

.price-info,
.prep-info {
  color: var(--theme-text-color) !important;
}

.subcategory-card-featured .price-info,
.subcategory-card-featured .prep-info,
.product-card .price-info,
.product-card .prep-info {
  color: #fff !important;
}

/* Google Maps Section */
.google-map-section {
  margin: 3rem 0;
  padding: 2rem 0;
}

.google-map-container {
  background: var(--theme-background-color);
  border-radius: 2rem;
  box-shadow: 0 4px 16px var(--theme-text-color);
  border: 2px solid var(--theme-secondary-color);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.google-map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .google-map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .google-map-container iframe {
    height: 250px;
  }
}

/* Responsive Design for Category Cards */
@media (max-width: 900px) {
  .category-card-featured {
    flex-direction: column;
    min-height: unset;
    border-radius: 2.5rem;
  }
  .category-card-featured .category-card-img {
    width: 100%;
    min-width: unset;
    height: 180px;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture[src*=".svg"] {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  .category-card-featured .category-card-content {
    padding: 1.5rem 1.2rem;
  }
  .category-card-featured .category-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .category-card-featured .category-card-title {
    font-size: 1.4rem;
  }
  .category-card-featured .category-card-badge {
    font-size: 1rem;
    padding: 6px 18px;
  }
}

@media (max-width: 600px) {
  .category-card-featured {
    margin-bottom: 1rem;
  }
  .category-card-featured .category-card-img {
    width: 100%;
    height: 160px;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture[src*=".svg"] {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }
  .category-card-featured .category-card-content {
    padding: 1.2rem 1rem;
  }
  .category-card-featured .category-card-title {
    font-size: 1.3rem;
  }
  .category-card-featured .category-card-badge {
    font-size: 0.95rem;
    padding: 5px 15px;
  }
  .category-card-featured .category-card-desc {
    font-size: 1.1rem;
  }
  .category-card-featured .category-card-shortdesc {
    font-size: 1.05rem;
    padding: 0.3em 1em;
  }
  .category-card-featured .category-card-infos {
    gap: 1rem;
  }
  .category-card-featured .category-card-info {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .category-card-featured .category-card-img {
    width: 100%;
    height: 140px;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .category-card-featured .category-card-img-picture[src*=".svg"] {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
  .category-card-featured .category-card-content {
    padding: 1rem 0.8rem;
  }
  .category-card-featured .category-card-title {
    font-size: 1.2rem;
  }
  .category-card-featured .category-card-badge {
    font-size: 0.9rem;
    padding: 4px 12px;
  }
  .category-card-featured .category-card-desc {
    font-size: 1rem;
  }
  .category-card-featured .category-card-shortdesc {
    font-size: 1rem;
    padding: 0.25em 0.8em;
  }
  .category-card-featured .category-card-infos {
    gap: 0.8rem;
  }
  .category-card-featured .category-card-info {
    font-size: 0.95rem;
  }
}
