/* Modern Store Header Styling */

/* Main Banner Section */
.modern-page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('/assets/images/banner/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background Elements */
.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(118, 167, 19, 0.85) 0%, rgba(74, 107, 10, 0.9) 60%, rgba(44, 62, 80, 0.8) 100%);
  z-index: 2;
}

.banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  background-size: 200px 200px, 150px 150px;
  z-index: 3;
}

/* Content Container */
.banner-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 40px 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 8px 20px;
  margin: 0;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active span {
  color: white;
  font-weight: 600;
}

/* Store Badge */
.store-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-badge i {
  color: white;
  margin-right: 8px;
  font-size: 14px;
}

.store-badge span {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Title */
.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

/* Subtitle */
.banner-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.5;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Store Info */
.store-info {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.store-meta-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-meta-item i {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.store-meta-item span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* Store Stats */
.store-stats {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  animation: fadeInRight 0.8s ease-out 0.6s both;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 80px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Decorative Elements */
.banner-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 25%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 5%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .store-stats {
    gap: 15px;
  }
  
  .stat-item {
    min-width: 70px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .modern-page-banner {
    min-height: 350px;
  }
  
  .banner-content {
    padding: 50px 0;
  }
  
  .banner-title {
    font-size: 2.8rem;
  }
  
  .store-stats {
    justify-content: center;
    margin-top: 30px;
  }
  
  .store-meta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modern-page-banner {
    min-height: 320px;
  }
  
  .banner-content {
    padding: 40px 0;
    text-align: center;
  }
  
  .banner-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .store-meta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .store-meta-item {
    justify-content: center;
  }
  
  .store-stats {
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    min-width: 60px;
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.8rem;
  }
  
  .banner-subtitle {
    font-size: 1rem;
  }
  
  .store-badge {
    padding: 5px 12px;
  }
  
  .store-badge span {
    font-size: 12px;
  }
  
  .store-meta-item {
    padding: 8px 12px;
  }
  
  .stat-item {
    padding: 10px;
    min-width: 50px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

/* Animation delays for staggered effects */
.store-meta-item:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.4s both; }
.store-meta-item:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.5s both; }
.store-meta-item:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.6s both; }

.stat-item:nth-child(1) { animation: fadeInRight 0.8s ease-out 0.7s both; }
.stat-item:nth-child(2) { animation: fadeInRight 0.8s ease-out 0.8s both; }
.stat-item:nth-child(3) { animation: fadeInRight 0.8s ease-out 0.9s both; }

/* Hover effects for interactive elements */
.store-meta-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.breadcrumb-item:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Focus states for accessibility */
.breadcrumb-item a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}