/* Store Header Styles */
.store-header-section {
  position: relative;
  margin-bottom: 3rem;
}

.store-cover-container {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.store-cover-image {
  width: 100%;
  height: 100%;
}

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

.store-cover-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: rgba(255, 255, 255, 0.7);
}

.store-profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 0 2rem 0;
}

.store-avatar {
  text-align: center;
  margin-bottom: 1.5rem;
}

.store-avatar img {
  width: 140px;
  height: 140px;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.store-avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.store-info {
  color: white;
}

.store-name {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.store-location {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* Floating Contact Info */
.floating-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.floating-contact-item {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.floating-contact-item:nth-child(1) { animation-delay: 0s; }
.floating-contact-item:nth-child(2) { animation-delay: 0.2s; }
.floating-contact-item:nth-child(3) { animation-delay: 0.4s; }
.floating-contact-item:nth-child(4) { animation-delay: 0.6s; }

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.floating-btn:hover::before {
  left: 100%;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: white;
}

.floating-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.floating-btn:hover i {
  transform: scale(1.2);
}

.contact-label {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Specific button colors */
.phone-item .floating-btn {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.8));
  border-color: rgba(40, 167, 69, 0.6);
}

.whatsapp-item .floating-btn {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.8), rgba(18, 140, 126, 0.8));
  border-color: rgba(37, 211, 102, 0.6);
}

.email-item .floating-btn {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(200, 35, 51, 0.8));
  border-color: rgba(220, 53, 69, 0.6);
}

.website-item .floating-btn {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.8), rgba(90, 50, 163, 0.8));
  border-color: rgba(111, 66, 193, 0.6);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

/* Store Description Section */
.store-description-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.01) 0%, rgba(118, 75, 162, 0.01) 100%);
  position: relative;
  overflow: hidden;
}

.store-description-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23667eea" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.description-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  animation: slideInUp 0.6s ease-out;
}

.description-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent, rgba(118, 75, 162, 0.1), transparent);
  animation: rotate 20s linear infinite;
  opacity: 0.3;
}

.description-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.description-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.description-icon {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 0.75rem;
  opacity: 0.5;
  animation: none;
}

.description-text {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  position: relative;
  opacity: 0.8;
}

.description-decoration {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 1rem auto 0;
  border-radius: 1px;
  position: relative;
  opacity: 0.6;
}

.description-decoration::before,
.description-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #667eea;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.description-decoration::before {
  left: -12px;
}

.description-decoration::after {
  right: -12px;
}

/* Additional animations */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



/* Store Ads Section */
.empty-state {
  padding: 4rem 1rem;
}

.empty-state i {
  opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .store-cover-container {
      height: 400px;
  }
  
  .store-name {
      font-size: 2.25rem;
  }
  
  .store-avatar img,
  .store-avatar-placeholder {
      width: 110px;
      height: 110px;
  }
  
  .store-profile-overlay {
      padding: 1rem 0 2rem 0;
  }
  
  .floating-contact-info {
      justify-content: center;
      gap: 0.75rem;
  }
  
  .floating-btn {
      padding: 0.6rem 1rem;
      font-size: 0.85rem;
  }
  
  .store-description-section {
      padding: 1.5rem 0;
  }
  
  .description-card {
      padding: 1.25rem;
      margin: 0 1rem;
  }
  
  .description-text {
      font-size: 0.95rem;
  }
  
  .description-icon {
      font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .store-cover-container {
      height: 350px;
  }
  
  .store-name {
      font-size: 1.75rem;
  }
  
  .store-avatar img,
  .store-avatar-placeholder {
      width: 90px;
      height: 90px;
  }
  
  .store-profile-overlay {
      padding: 1rem 0 1.5rem 0;
  }
  
  .store-info {
      text-align: center;
      margin-top: 1rem;
  }
  
  .floating-contact-info {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
  }
  
  .floating-btn {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
      min-width: 120px;
      flex: 1;
      max-width: 150px;
  }
  
  .store-description-section {
      padding: 1rem 0;
  }
  
  .description-card {
      padding: 1rem;
      margin: 0 0.5rem;
  }
  
  .description-text {
      font-size: 0.9rem;
  }
  
  .description-icon {
      font-size: 1rem;
  }
}