body {
  max-width: 440px !important;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #e0e7ff 0%, #fff 100%);
  margin: 0;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.container {
  padding: 5% !important;
  max-width: 440px !important;
  margin: auto !important;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
  animation: fadeIn 1s ease;
}

.company-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
  background: #f3f6fa;
  animation: popIn 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}

.company-name {
  font-size: 16px;
  font-weight: 900;
  margin: 8px 0 5px 0;
  color: blue;
  letter-spacing: 1px;
}
.Verified-img {
  width: 25px;
  padding: 0;
  margin-bottom: -8px;
}

.welcome {
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.profile-box {
  display: flex;
  align-items: center;
  background: #eef7ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
  padding: 10px 8px;
  margin: 12px 0 6px 0;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(30px);
  flex-direction: row;
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-name {
  font-size: 0.88rem;
  padding-bottom: 8px;
}

.profile-box.animate-fade-in {
  animation: fadeInUp 0.8s 0.2s forwards;
}

.profile-box {
  border-left: 5px solid #1e90ff;
}

.owner-box {
  border-left: 5px solid #1e90ff;
}

.sales-team {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
}

.links {
  gap: 10px;
  margin-top: 18px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 80%;
  min-width: 0;
  max-width: 100vw;
  height: 50px;
  background: var(--btn-color, #1e90ff);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.10);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  margin: 0 auto;
  letter-spacing: 0.5px;
  gap: 18px;
  opacity: 0;
  transform: translateY(40px);
  padding: 0 6px;
  padding-left: 24px;
}

.link-btn i {
  font-size: 0.5em;
  margin-right: 5px;
}

.sales-team .profile-name {
  font-size: 0.92rem;
}

.sales-team .profile-info {
  display: block;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex-direction: row !important;
}
.call-btn {
  width: 26px;
  height: 26px;
  font-size: 0.98em;
  margin-left: 5px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e7ff;
  background: #e0e7ff;
}

.profile-info {
  flex: 1;
  text-align: left;
}

.profile-name {
  display: block;
  font-weight: 600;
  font-size: 1.0rem;
  color: #334155;
  margin-bottom: 6px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(37,211,102,0.08);
  width: 131px;
}

.whatsapp-btn i {
  margin-right: 5px;
  font-size: 1.2em;
}

.whatsapp-btn:hover {
  background: #128c7e;
  animation: vibrate 0.3s linear 1;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e90ff;
  color: #fff;
  border-radius: 5px;
  width: 50px;
  height: 35px;
  margin-left: 8px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(30, 144, 255, 0.08);
}
.call-btn i {
  margin: 0;
}
.call-btn:hover {
  background: #155fa0;
  animation: vibrate 0.3s linear 1;
}

.links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.link-btn i {
  font-size: 1.5em;
  margin-right: 16px;
}

.link-btn.animate-slide-up {
  animation: slideUp 0.9s 0.4s forwards;
}

.link-btn:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.16);
  background: #22223b;
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes vibrate {
  0% { transform: scale(1.05) translate(0); }
  20% { transform: scale(1.05) translate(-2px, 2px); }
  40% { transform: scale(1.05) translate(-2px, -2px); }
  60% { transform: scale(1.05) translate(2px, 2px); }
  80% { transform: scale(1.05) translate(2px, -2px); }
  100% { transform: scale(1.05) translate(0); }
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Carousel Styles */
.carousel-section {
  margin: 10px 0;
  padding: 0;
}

.carousel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  margin: 15px 5px 10px 5px;
  text-align: center;
}

  .carousel-swiper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
  background: #fff;
  overflow: hidden;
}

.carousel-img {
  width: 170px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.05);
}

.swiper-slide {
  padding: 8px 8px 25px 8px;
  box-sizing: border-box;
}

/* Swiper pagination dots */
.swiper-pagination {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(30, 144, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #1e90ff;
  transform: scale(1.2);
  width: 30px !important;
  border-radius: 5px !important;
}

.catalog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 300px;
  height: 40px;
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin: 20px auto 0;
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease;
  gap: 12px;
}

.catalog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
  background: linear-gradient(135deg, #4169e1, #1e90ff);
}

.catalog-btn i {
  font-size: 1.2em;
}  

@media (max-width: 400px) {

  .carousel-img {
    width: 150px;
  }

  .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
  }
  
  .swiper-pagination-bullet-active {
    width: 30px !important;
    
  }
}

/* Maps Section Styles */
.maps-section {
  margin: 0;
  padding: 20px 0 0 0;
}

.maps-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 20px;
  text-align: center;
}

.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.location-info {
  padding: 16px;
  background: linear-gradient(135deg, #f8faff 0%, #eef7ff 100%);
}

.location-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e90ff;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-name i {
  font-size: 1.2em;
  color: #1e90ff;
}

.location-address {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-btn, .call-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

.map-btn {
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
}

.map-btn:hover {
  background: linear-gradient(135deg, #4169e1, #1e90ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
  color: #fff;
}

.call-location-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.call-location-btn:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.map-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 12px 12px;
}

/* Responsive adjustments for maps */
@media (max-width: 400px) {
  .location-card {
    margin-bottom: 16px;
  }
  
  .location-info {
    padding: 12px;
  }
  
  .location-name {
    font-size: 0.85rem;
  }
  
  .location-address {
    font-size: 0.75rem;
  }
  
  .location-actions {
    flex-direction: row;
    gap: 5px;
  }
  
  .map-btn, .call-location-btn {
    width: 100%;
    min-width: auto;
  }

  .map-btn {
    font-size: 0.8rem;
  }
  
  .map-container {
    height: 250px;
  }
}

/* Categories Carousel Styles */
.categories-section {
  margin: 0 0;
  padding: 0;
}

.categories-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  margin: 20px 5px 10px 5px;
  text-align: center;
}

.categories-swiper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
  background: #fff;
  overflow: hidden;
}

.category-box {
  background: #fff;
  border-radius: 6px !important;
  padding: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(30, 144, 255, 0.1);
  overflow: hidden;
}

.category-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.15);
  border-color: rgba(30, 144, 255, 0.3);
}

.category-box img {
  width: auto;
  height: 156px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px 6px 0 0 !important;
}

.category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: linear-gradient(135deg, #f8faff 0%, #eef7ff 100%);
}

.category-name {
  color: #1e90ff;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 1px 2px rgba(30, 144, 255, 0.1);
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
}

.category-btn:hover {
  background: linear-gradient(135deg, #4169e1, #1e90ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
  color: #fff;
}

.website-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  margin: 0;
  text-align: center;
}

/* Responsive adjustments for categories */
@media (max-width: 400px) {
  

  .category-box {
    height: auto;
  }
  
  .category-box img {
    width: 100%;
    height: 138px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .category-content {
    padding: 8px;
  }
  
  .category-name {
    font-size: 0.75rem;
  }
  
  .category-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 0 0;
}

.social-icon {
  font-size: 2.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.social-icon[aria-label="Instagram"] i {
  color: #E4405F;
  /* Optionally, for a gradient, use background-clip and text-fill-color, but solid color is more compatible */
}

.social-icon[aria-label="Facebook"] i {
  color: #1877F3;
}

.social-icon[aria-label="LinkedIn"] i {
  color: #0A66C2;
}

.social-icon:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}