:root {
  --card-height: 300px;
  --card-width: calc(var(--card-height) / 1.5);
}

* {
  box-sizing: border-box;
}

.bg-zamalek {
  background-image: url("../images/head.png");
}

.logo-shape {
  overflow: hidden;
  -moz-transform: skew(35deg);
  -o-transform: skew(35deg);
  -ms-transform: skew(35deg);
  -webkit-transform: skew(35deg);
  transform: skew(35deg);
  z-index: -1;
  position: absolute;
}

.shape1 {
  top: -17px;
  left: -35px;
  width: 133px;
  height: 125px;
  background-color: #222;
}

.shape2 {
  top: -35px;
  left: -85px;
  width: 75px;
  height: calc(100% - 1px);
  background-color: #ff00007a;
  z-index: -3;
}

.shape3 {
  top: 50px;
  left: -21px;
  width: 40px;
  height: 70px;
  background-color: transparent;
  border: 2px solid #fff;
  z-index: -2;
}

.rssapp-title-header {
  display: none !important;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}

/* أنيميشن للقوائم */
.menu-slide {
  transform: translateY(-10px);
  opacity: 0;
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* تأثير hover محسن */
.nav-link {
  position: relative;
  overflow: hidden;
  font-family: "Noto Kufi Arabic", sans-serif;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

/* تدرج خلفية الهيدر */
.header-bg {
  background: linear-gradient(135deg, #171717 0%, #262626 50%, #171717 100%);
 /* background-color: rgba(34, 34, 34, 0.7)*/
}

/* أنيميشن القائمة المنسدلة */
.dropdown-menu {
  transform: translateY(-20px) rotateX(-90deg);
  transform-origin: top;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown:hover .dropdown-menu {
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

/* أنيميشن أيقونة الهامبرغر */
.hamburger-line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger:hover .line1 {
  transform: translateY(2px) rotate(15deg);
}

.hamburger:hover .line2 {
  opacity: 0.5;
}

.hamburger:hover .line3 {
  transform: translateY(-2px) rotate(-15deg);
}

/* تأثير النبض للإشعارات */
.notification-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.match-card {

  transition: all 0.3s ease;

}

.match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.result-badge {
  background: linear-gradient(45deg, #10b981, #059669);
}

.vs-badge {
  background: linear-gradient(45deg, #dc2626, #b91c1c) !important;
  border: 2px solid #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.light-theme {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.light-theme .match-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #1f2937;
}

.light-theme .match-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    padding: 40px 0 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="%23dc2626" opacity="0.15"/><circle cx="80" cy="40" r="1" fill="%2306b6d4" opacity="0.12"/><circle cx="40" cy="70" r="0.8" fill="%23eab308" opacity="0.1"/><circle cx="70" cy="10" r="1.2" fill="%2310b981" opacity="0.13"/><circle cx="10" cy="60" r="0.6" fill="%23f59e0b" opacity="0.08"/><circle cx="60" cy="80" r="0.9" fill="%23dc2626" opacity="0.11"/></svg>') repeat;
    animation: float 25s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(10px); }
    75% { transform: translateY(10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-section {
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    text-align: center;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    border-radius: 2px;
}

.footer-section:nth-child(1) .footer-title::after {
    background: linear-gradient(90deg, #dc2626, #ff4444);
}

.footer-section:nth-child(2) .footer-title::after {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.footer-section:nth-child(3) .footer-title::after {
    background: linear-gradient(90deg, #10b981, #059669);
}

.footer-section:nth-child(4) .footer-title::after {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 6px;
    position: relative;
    z-index: 15;
    cursor: pointer;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-section:nth-child(1) .footer-links a:hover {
    background: rgba(220, 38, 38, 0.15);
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.2);
}

.footer-section:nth-child(2) .footer-links a:hover {
    background: rgba(6, 182, 212, 0.15);
    box-shadow: 0 3px 12px rgba(6, 182, 212, 0.2);
}

.footer-section:nth-child(3) .footer-links a:hover {
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.2);
}

.footer-section:nth-child(4) .footer-links a:hover {
    background: rgba(245, 158, 11, 0.15);
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.2);
}

.social-section {
    text-align: center;
    margin: 35px 0 25px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0,0,0,0.1);
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(45deg, #dc2626, #06b6d4, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 15;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(220, 38, 38, 0.8);
    border-color: #dc2626;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.social-icon.facebook:hover { background: rgba(24, 119, 242, 0.8); border-color: #1877f2; }
.social-icon.twitter:hover { background: rgba(29, 161, 242, 0.8); border-color: #1da1f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-icon.youtube:hover { background: rgba(255, 0, 0, 0.8); border-color: #ff0000; }
.social-icon.tiktok:hover { background: rgba(0, 0, 0, 0.8); border-color: #000000; }

.copyright {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(15, 23, 42, 0.6));
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.copyright .highlight {
    color: #dc2626;
    font-weight: 600;
}

.row.d-flex {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.row.d-flex > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .row.d-flex > [class*="col-"] {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 991px) {
    .row.d-flex > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .row.d-flex > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hover-lift:hover {
  transform: translateY(-8px);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.overlay-gradient {
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: spin 1s linear infinite;
}

.card-player {
  width: var(--card-width);
  height: var(--card-height);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 76px;
  perspective: 2500px;
  margin: 40px 20px 0 20px;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.card-player:hover .wrapper {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}

.wrapper::before,
.wrapper::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

.wrapper::before {
  top: 0;
  height: 100%;
  background-image: linear-gradient(to top,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%);
}

.wrapper::after {
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(to bottom,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%);
}

.card:hover .wrapper::before,
.wrapper::after {
  opacity: 1;
}

.card-player:hover .wrapper::after {
  height: 120px;
}

.title {
  width: 100%;
  transition: transform 0.5s;
}

.card-player:hover .title {
  transform: translate3d(0%, -50px, 100px);
}

.character {
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  z-index: -1;
  display: none;
}

.card-player:hover .character {
  opacity: 1;
  transform: translate3d(0%, -30%, 100px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .card-player {
    margin: 80px auto 0 auto;
    width: 80vw;
    max-width: 280px;
    height: auto;
    min-height: 350px;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5px 20px 5px;
  }

  .swiper-container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .card-player {
    width: 85vw;
    max-width: 250px;
    margin: 70px auto 0 auto;
  }

  .swiper-slide {
    padding: 35px 2px 15px 2px;
  }
}

.counter-card {
  display: table;
  margin: 0 auto
}

.counter-card .card {
  position: relative;
  margin: 0 2px;
  display: inline-block
}

.counter-card .card .number {
  position: relative;
  display: inline-block;
  padding: 2px 7px;
  width: 44px;
  border-radius: 3px;
  border: 2px solid #c5c5c5;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  font-size: 38px;
  color: #e3030e
}

.counter-card .card .line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c9c9c9
}

.counter-card .card:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #c5c5c5;
  border-radius: 3px
}

.counter-card .card .number:after {
  transform: translateY(-50%);
  width: 2px;
  height: 8px;
  background-color: #767676;
  position: absolute;
  top: 50%;
  content: ''
}

.counter-card .card .number:before {
  left: -2px
}

.counter-card .card .number:after {
  right: -2px
}

.counter-card .card a.active {
  background: #93291e;
  padding: 5px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px
}

.counter-card .card a {
  padding: 5px;
  color: #222;
  font-size: 18px;
  border-radius: 5px
}

.team-image-container {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.panel {
    display: flow-root;
    position: relative;
    box-sizing: border-box;
}
.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out both;
}

.floating-dot {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.sponsor-item:hover {
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.social-icon:hover {
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Social Media Colors */
.social-facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-facebook:hover {
  background: linear-gradient(135deg, #166fe5, #1877f2);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-twitter:hover {
  background: linear-gradient(135deg, #0d8bd9, #1da1f2);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.social-instagram {
  background: linear-gradient(135deg, #e4405f, #f56040, #ffdc80);
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-instagram:hover {
  background: linear-gradient(135deg, #d62976, #e4405f, #f56040);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

.social-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-youtube:hover {
  background: linear-gradient(135deg, #cc0000, #ff0000);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.social-tiktok {
  background: linear-gradient(135deg, #000000, #ff0050, #00f2ea);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-tiktok:hover {
  background: linear-gradient(135deg, #ff0050, #000000, #00f2ea);
  box-shadow: 0 8px 25px rgba(255, 0, 80, 0.5);
}

/* Partners Swiper Styles */
.partners-swiper {
  padding: 40px 0 60px 0;
  width: 100%;
  position: relative;
}

.partners-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}



.partners-swiper .swiper-pagination {
  bottom: 10px;
}

.partners-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.partners-swiper .swiper-pagination-bullet-active {
  background: #dc2626;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .partners-swiper {
    padding: 30px 0 50px 0;
  }
}

    /* تأثيرات مخصصة لصفحة أعضاء مجلس الإدارة */
    .director-card {
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .director-card:hover {
      border-color: rgba(239, 68, 68, 0.3);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 68, 68, 0.2);
    }
    
    .modal-content {
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* تأثير النبضة للإشعارات */
    @keyframes pulse-red {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
      }
      50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
      }
    }
    
    .notification-pulse {
      animation: pulse-red 2s infinite;
    }
    
    /* تأثير التدرج المتحرك */
    @keyframes gradient-shift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    
    .animated-gradient {
      background: linear-gradient(-45deg, #ef4444, #dc2626, #b91c1c, #991b1b);
      background-size: 400% 400%;
      animation: gradient-shift 3s ease infinite;
    }
    
    /* تحسين الخطوط العربية */
    .font-z {
      font-family: 'Noto Kufi Arabic', sans-serif;
      font-feature-settings: 'kern' 1, 'liga' 1;
    }
    
    .font-zs {
      font-family: 'Aref Ruqaa', serif;
    }
    
    /* تأثير الضوء المتحرك */
    .light-effect {
      position: relative;
      overflow: hidden;
    }
    
    .light-effect::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: rotate(45deg);
      transition: transform 0.6s;
      opacity: 0;
    }
    
    .light-effect:hover::before {
      transform: rotate(45deg) translate(100%, 100%);
      opacity: 1;
    }
    
    /* تحسين الاستجابة للشاشات الصغيرة */
    @media (max-width: 768px) {
      .director-card {
        margin-bottom: 1rem;
      }
      
      .modal-content {
        margin: 1rem;
        max-height: 85vh;
      }
    }
    
    /* تأثير التحميل */
    .loading-shimmer {
      background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }
        .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .line-clamp-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .news-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .news-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    
    .featured-card {
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .featured-card:hover {
      transform: scale(1.02);
      box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.3);
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-fade-in-up {
      animation: fadeInUp 0.6s ease-out;
    }
    
    .shimmer {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }

    /* store*/
    
.store-swiper {
  padding: 20px 0;
  overflow: visible;
}

.store-swiper .swiper-slide {
  height: 640px;
  display: flex;
  align-items: stretch;
}

.store-swiper .swiper-slide > div {
  width: 100%;
  height: 100%;
}

.store-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .store-swiper {
    padding: 10px 0;
    margin: 0 -10px;
  }
  
  .store-swiper .swiper-slide {
    height: auto !important;
    min-height: 500px;
    padding: 0 10px;
  }
  
  .store-swiper .swiper-slide > div > div {
    height: auto !important;
    min-height: 500px;
  }
  
  .store-swiper .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  
  .store-swiper .swiper-slide .absolute.bottom-0 {
    position: relative;
    bottom: auto;
    margin-top: auto;
  }
}

.store-swiper .swiper-button-next,
.store-swiper .swiper-button-prev {
  background: rgba(220, 38, 38, 0.8);
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  transition: all 0.3s ease;
}

.store-swiper .swiper-button-next:hover,
.store-swiper .swiper-button-prev:hover {
  background: rgba(220, 38, 38, 1);
  transform: scale(1.1);
}

.store-swiper .swiper-button-next:after,
.store-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.store-swiper .swiper-pagination {
  bottom: -10px;
}

.store-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.store-swiper .swiper-pagination-bullet-active {
  background: #dc2626;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .store-swiper .swiper-slide {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .store-swiper .swiper-slide {
    height: 640px;
  }
}

/* Loader Styles */
.loader-container {
  text-align: center;
}

.svg-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fade out animation for loader */
.loader-fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Footer Logos */
