/* Home page – Figma layout (logos, Top Online-Angebote, CTA, etc.) */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;800&family=Inter:wght@400;600;800&display=swap');

/* ========== Logos strip ========== */
.home-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 64px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.home-logos-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 37px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}

.home-logos-inner img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0);
}

.home-logo-item {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}

/* ========== Top Online-Angebote (Ecommerce Category vertical) ========== */
.home-online-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.home-online-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: 100%;
  max-width: 1200px;
}

.home-online-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #000000;
  margin: 0;
  text-align: center;
}

.home-online-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  text-align: center;
}

.home-online-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.home-online-card {
  width: 384px;
  height: 252px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
}

.home-online-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-online-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
}

.home-online-card-text {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-online-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.home-online-card-count {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.home-online-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20.5px 20px;
  gap: 4px;
  height: 60px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ACAE36;
  background: transparent;
  text-decoration: none;
}

.home-online-link:hover {
  color: #9a9c2e;
  text-decoration: none;
}

/* ========== Vertrags- und Serviceangebote (Ecom Product cards) ========== */
.home-company-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.home-company-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.home-company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.home-company-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #000000;
  margin: 0;
}

.home-company-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  max-width: 485px;
}

.home-company-link {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #ACAE36;
  background: transparent;
  text-decoration: none;
  margin-top: 8px;
}

.home-company-link:hover {
  color: #9a9c2e;
  text-decoration: none;
}

.home-company-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

/* Product cards: 288px width, image 288x288, text + price below */
.home-company-section .home-company-carousel .owl-stage-outer {
  overflow: hidden;
}

.home-company-section .home-company-carousel .owl-item {
  padding: 0 0;
}

.home-company-section .home-product-card {
  width: 288px;
  flex: none;
  position: relative;
}

/* hide owl nav arrows on mobile for company carousel */
@media (max-width: 576px) {
  .home-company-section .home-company-carousel .owl-nav {
    display: none !important;
  }
}

/* زر القلب – عقود واشتراكات (خارج الرابط، ظاهر دائماً) */
.home-company-section .home-company-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  color: #555;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: color 0.2s, background 0.2s;
}
.home-company-section .home-company-fav-btn:hover {
  color: #e30613;
  background: #fff;
}
.home-company-section .home-company-fav-btn.active,
.home-company-section .home-company-fav-btn.active i {
  color: #e30613 !important;
}

.home-company-section .home-product-card > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.home-company-section .home-product-card .product_item,
.home-company-section .home-product-card .end-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 288px;
  min-height: 432px;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
  border: none;
  background: transparent;
  text-align: left;
  position: relative;
}

.home-company-section .home-product-card .product_image {
  box-sizing: border-box;
  width: 288px;
  height: 288px;
  min-height: 288px;
  background: #FFFFFF;
  border: 1px solid #C5C5C5;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}

.home-company-section .home-product-card .product_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 288px;
  min-height: 64px;
}


/* No button on card – match image (card is clickable via parent link) */
.home-company-section .home-product-card .product_extras {
  display: none !important;
}

.home-company-section .home-product-card .product_name div a,
.home-company-section .home-product-card .product_name {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #000000;
}

.home-company-section .home-product-card .product_content .product_price {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* قلب المفضلة – عقود واشتراكات (ظاهر دائماً) */
.home-company-section .home-product-card .product_fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  color: #555;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.home-company-section .home-product-card .product_fav:hover {
  color: #e30613;
  background: rgba(255,255,255,1);
}
.home-company-section .home-product-card .product_fav.active i,
.home-company-section .home-product-card .product_fav.active {
  color: #e30613 !important;
}

/* Arrow buttons: 60x60, #E1E1E1 */
.home-company-section .home-company-carousel-wrap .owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  margin: 0;
  height: 0;
}

.home-company-section .home-company-carousel .owl-nav button {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  background: #E1E1E1 !important;
  border: none !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.home-company-section .home-company-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -76px;
}

.home-company-section .home-company-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -76px;
}

.home-company-section .home-company-carousel .owl-nav button span {
  font-size: 0;
  background: none !important;
}

.home-company-section .home-company-carousel .owl-nav button.owl-prev::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('../assets/icons/left.svg') center/contain no-repeat;
}

.home-company-section .home-company-carousel .owl-nav button.owl-next::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('../assets/icons/right.svg') center/contain no-repeat;
}

/* Dots: active 20x10 #ACAE36, default 10x10 #D9D9D9 */
.home-company-section .home-company-carousel .owl-dots {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 5px;
  justify-content: center;
  margin-top: 24px;
}

.home-company-section .home-company-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  background: #D9D9D9 !important;
  border: none !important;
  border-radius: 8px;
  transition: width 0.2s ease, background 0.2s ease;
}

.home-company-section .home-company-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 10px;
  background: #ACAE36 !important;
}

@media (max-width: 1320px) {
  .home-company-section .home-company-carousel .owl-nav button.owl-prev { left: 0; }
  .home-company-section .home-company-carousel .owl-nav button.owl-next { right: 0; }
}

@media (max-width: 1200px) {
  .home-company-section { padding: 40px 24px; gap: 40px; }
  .home-company-title { font-size: 36px; line-height: 44px; }
  .home-company-subtitle { font-size: 18px; line-height: 28px; }
}

@media (max-width: 768px) {
  .home-company-section { padding: 32px 16px; gap: 32px; }
  .home-company-title { font-size: 28px; line-height: 36px; }
  .home-company-subtitle { font-size: 16px; line-height: 24px; }
  .home-company-section .home-product-card,
  .home-company-section .home-product-card .product_item,
  .home-company-section .home-product-card .end-offer { width: 100%; min-width: 0; }
  .home-company-section .home-product-card .product_image { width: 100%; height: 240px; min-height: 240px; }
  .home-company-section .home-product-card .product_content { width: 100%; }
  .home-company-section .home-product-card a{
    width: 100%;
  }
}

/* App CTA Banner – نفس ستايل about (موبايل في الأسفل) ========== */
.about-cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.about-cta-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 60px;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  min-height: 348px;
  background: #1A6E83;
  border-radius: 16px;
  position: relative;
  overflow: visible;
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 30px;
  max-width: 552px;
  z-index: 0;
}

.about-cta-headline {
  font-family: 'Cairo', 'NeoSansArabic', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  margin: 0;
}

.about-cta-body {
  font-family: 'Inter', 'NeoSansArabic', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.about-cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20.5px 20px;
  gap: 4px;
  min-width: 120px;
  height: 60px;
  background: #ACAE36;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', 'NeoSansArabic', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}

.about-cta-btn:hover {
  background: #9a9c2e;
  color: #FFFFFF;
}

.about-cta-phone {
  position: absolute;
  right: 60px;
  bottom: 0;
  transform: none;
  z-index: 1;
  flex-shrink: 0;
}

.about-cta-phone-image {
  width: 300px;
  height: auto;
  max-height: 366px;
  object-fit: contain;
  display: block;
}

/* ========== Section header with arrows (Vertrags-, Das Leben-, Beste Geschäfte) ========== */
.home-section-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.home-section-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.home-section-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #000000;
  margin: 0;
}

.home-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.home-section-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.home-section-arrow {
  width: 60px;
  height: 60px;
  background: #E1E1E1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.home-section-arrow:hover {
  background: #d0d0d0;
}

.home-section-arrow .arrow-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* RTL (العربي): CTA – الموبايل في الناحية الثانية؛ عكس أسهم الأقسام */

[dir="rtl"] .about-cta-phone {
  left: 60px;
  right: auto;
}
[dir="rtl"] .about-cta-content {
  align-items: flex-end;
}
/* موبايل عربي: الموبايل يظهر أولاً (فوق) */
@media (max-width: 1200px) {
  [dir="rtl"] .about-cta-banner {
    flex-direction: column;
  }
  [dir="rtl"] .about-cta-phone {
    order: -1;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 24px;
  }
  [dir="rtl"] .about-cta-content {
    align-items: center;
  }
}

[dir="rtl"] .home-section-arrows .arrow-icon {
  transform: scaleX(-1);
}

/* hide section arrows on mobile for all home carousels */
@media (max-width: 576px) {
  .home-section-arrows,
  .home-section-arrow {
    display: none !important;
  }
}

/* ========== Blog / Slider right inside ========== */
.home-blogs-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.home-blogs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.home-blogs-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 30px;
  width: 100%;
}

.home-blogs-header .home-section-text {
  gap: 10px;
}

.home-blogs-carousel-wrap {
  width: 100%;
  position: relative;
}

.home-blogs-section .home-blogs-carousel .owl-nav {
  display: none;
}

.home-blogs-section .home-blogs-carousel .owl-stage-outer {
  overflow: hidden;
}

.home-blogs-section .home-blogs-carousel .owl-item {
  padding: 0;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 24px;
  box-sizing: border-box;
  width: 259px;
  height: 240px;
  min-height: 240px;
  background: #FFFFFF;
  border: 1px solid #C5C5C5;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-blog-card:hover {
  border-color: #1A6E83;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
}

.home-blog-card-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(26, 110, 131, 0.12);
  border-radius: 12px;
}

.home-blog-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-blog-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: 100%;
  max-width: 211px;
  text-align: center;
}

.home-blog-card-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.home-blog-card-count {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

/* ========== Useful for you in Germany (same layout, cards without icon) ========== */
.home-germany-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  box-sizing: border-box;
}

.home-germany-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.home-germany-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 30px;
  width: 100%;
}

.home-germany-header .home-section-text {
  gap: 10px;
}

.home-germany-carousel-wrap {
  width: 100%;
  position: relative;
}

.home-germany-section .home-germany-carousel .owl-nav {
  display: none;
}

.home-germany-section .home-germany-carousel .owl-stage-outer {
  overflow: hidden;
}

.home-germany-section .home-germany-carousel .owl-item {
  padding: 0;
}

/* Blog article card: 298x328, image 232px, title, date (Figma) */
.home-germany-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  box-sizing: border-box;
  width: 298px;
  min-height: 328px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  position: relative;
}

.home-germany-card:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.92;
}

.home-germany-card-image {
  width: 298px;
  height: 232px;
  flex: none;
  background: #F1F1F1;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.home-germany-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.home-germany-card-outer {
  position: relative;
}
.home-germany-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  border: none;
  color: #555;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.home-germany-fav:hover {
  color: #e30613;
  background: #fff;
}
.home-germany-fav.active,
.home-germany-fav.active i {
  color: #e30613 !important;
}

.home-germany-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 10px;
  background: #FFFFFF;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  z-index: 1;
}

.home-germany-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 100%;
  max-width: 298px;
}

.home-germany-card-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-germany-card-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}

/* ========== Best Shops / Companies (Beste Geschäfte – logo + name cards) ========== */
.home-shops-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #FFFFFF;
}

.home-shops-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.home-shops-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 30px;
  width: 100%;
}

.home-shops-header .home-section-text {
  gap: 10px;
}

.home-shops-carousel-wrap {
  width: 100%;
  position: relative;
}

.home-shops-section .home-shops-carousel .owl-nav {
  display: none;
}

.home-shops-section .home-shops-carousel .owl-stage-outer {
  overflow: hidden;
}

.home-shop-card-outer {
  display: block;
  padding: 0;
  position: relative;
}
/* زر المفضلة – المتاجر */
.home-shop-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  border: none;
  color: #555;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color 0.2s, background 0.2s;
}
.home-shop-fav:hover {
  color: #e30613;
  background: #fff;
}
.home-shop-fav.active,
.home-shop-fav.active i {
  color: #e30613 !important;
}

.home-shop-card-outer .home-shop-card {
  display: flex;
}

.home-shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.home-shop-card:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

.home-shop-card-logo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  background: #F1F1F1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
}

.home-shop-card-name {
  font-family: 'Inter', 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin: 0;
  text-align: center;
  max-width: 160px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
  .home-online-section,
  .home-blogs-section,
  .home-germany-section,
  .home-shops-section {
    padding: 60px 40px;
  }
  .about-cta-wrap {
    padding: 24px 40px;
  }
  .about-cta-banner {
    flex-direction: column;
    padding: 40px 24px 60px;
    min-height: auto;
  }
  .about-cta-phone {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 24px;
  }
  .about-cta-content {
    max-width: 100%;
  }
  .home-blogs-header,
  .home-germany-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .home-online-section,
  .home-blogs-section,
  .home-germany-section,
  .home-shops-section {
    padding: 60px 24px;
  }
  .about-cta-wrap {
    padding: 24px;
  }
  .about-cta-content {
    align-items: center;
    text-align: center;
  }
  .home-online-grid {
    justify-content: center;
  }
  .home-online-card {
    width: 100%;
    max-width: 384px;
  }
}

@media (max-width: 768px) {
  .home-logos {
    padding: 40px 24px;
  }
  .home-logos-inner {
    justify-content: center;
  }
  .home-online-title {
    font-size: 36px;
    line-height: 44px;
  }
  .home-online-subtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .home-section-title {
    font-size: 36px;
    line-height: 44px;
  }
  .home-section-subtitle {
    font-size: 18px;
  }
  .about-cta-wrap {
    padding: 24px 20px;
  }
  .about-cta-banner {
    padding: 32px 20px 40px;
  }
  .about-cta-headline {
    font-size: 24px;
    line-height: 32px;
  }
  .about-cta-body {
    font-size: 14px;
    line-height: 22px;
  }
  .about-cta-phone {
    width: 240px;
  }
  .about-cta-phone-image {
    max-width: 100%;
    height: auto;
  }
}
