:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #377DFF;
  --secondary-color: #ffc107;
  --dark-color: #0052ea;
  --text-color: #677788;
  --light-bg: #f8f9fa;
  --white-color: #ffffff;
}

/*================================================
0. Mixins Css
=================================================*/
.section {
  position: relative;
  overflow: hidden;
}

.min-vh-90 {
  min-height: 90vh;
}

.z-index-2 {
  z-index: 2;
}

.section-subtitle {
  font-size: 0.6875rem;
}

.lead-text {
  font-size: 1.125rem;
  color: #52527a;
  line-height: 1.7;
}

/* Buttons */
.btn-gradient-primary {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
}

.section-subtitle {
  color: #677788;
  font-size: 1.1rem;
}

.badge-primary-soft {
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-glass {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: #000;
}

.ecommerce-hero {
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .ecommerce-hero {
    padding: 80px 0 80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ecommerce-hero {
    padding: 150px 0 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ecommerce-hero {
    padding: 180px 0 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ecommerce-hero {
    padding: 190px 0 80px;
  }
}
@media (max-width: 767px) {
  .ecommerce-hero {
    padding: 60px 0 0px;
  }
}
.ecommerce-hero .hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
}
.ecommerce-hero .hero-content .service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ecommerce-hero .hero-content .service-badges .badge-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ecommerce-hero .hero-content .service-badges .badge-glass {
    padding: 6px 8px;
    font-size: 0.75rem;
  }
}
.ecommerce-hero .hero-content .service-badges .badge-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.ecommerce-hero .hero-content .hero-title {
  color: #1a1a1a;
  line-height: 1.2;
  font-size: 2.5rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ecommerce-hero .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ecommerce-hero .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ecommerce-hero .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
.ecommerce-hero .hero-content .hero-title .text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ecommerce-hero .hero-content .hero-subtitle {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ecommerce-hero .hero-content .hero-cta-group {
    display: flex;
  }
}
.ecommerce-hero .hero-content .trust-signals-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ecommerce-hero .hero-content .trust-signals-inline {
    justify-content: start;
  }
}
.ecommerce-hero .hero-content .trust-signals-inline .trust-item {
  text-align: center;
}
.ecommerce-hero .hero-content .trust-signals-inline .trust-item .trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}
.ecommerce-hero .hero-content .trust-signals-inline .trust-item .trust-label {
  font-size: 0.875rem;
  color: #666;
}
.ecommerce-hero .hero-content .trust-signals-inline .trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}
.ecommerce-hero .hero-content .hero-trust-footer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.ecommerce-hero .hero-content .hero-trust-footer .trust-footer-item {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 0.9rem;
}
.ecommerce-hero .hero-image-wrapper {
  position: relative;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 14px;
}
@media (max-width: 767px) {
  .ecommerce-hero .hero-image-wrapper .hero-image-frame {
    backdrop-filter: unset;
  }
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .hero-jewelry-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatCard 3s infinite ease-in-out;
  z-index: 2;
}
@media (max-width: 767px) {
  .ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card {
    display: none;
  }
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card .stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card .stat-content .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  line-height: 1;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card .stat-content .stat-label {
  font-size: 0.75rem;
  color: hsl(240, 20%, 50%);
  margin-top: 3px;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card.stat-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card.stat-card-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card.stat-card-2 {
    bottom: 15%;
  }
}
.ecommerce-hero .hero-image-wrapper .hero-image-frame .floating-stat-card.stat-card-3 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator .scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
}
.scroll-indicator .scroll-mouse .scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}
.scroll-indicator .scroll-mouse .scroll-wheel .scroll-text {
  color: var(--text-color);
  font-size: 0.85rem;
  margin: 0;
}

/* Keyframes */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
.ecommerce-why-matters {
  background-color: #f8f9fa;
}
.ecommerce-why-matters .benefits-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.ecommerce-why-matters .benefits-list .benefit-item {
  display: flex;
  gap: 20px;
}
.ecommerce-why-matters .benefits-list .benefit-item .benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002a80;
  margin-bottom: 5px;
}
.ecommerce-why-matters .benefits-list .benefit-item .benefit-text {
  color: #677788;
  line-height: 1.6;
}
.ecommerce-why-matters .benefits-list .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ecommerce-why-matters .benefits-list .benefit-icon.bg-primary-light {
  background: rgba(55, 125, 255, 0.1);
}
.ecommerce-why-matters .benefits-list .benefit-icon.bg-warning-light {
  background: rgba(255, 193, 7, 0.1);
}
.ecommerce-why-matters .benefits-list .benefit-icon.bg-success-light {
  background: rgba(40, 167, 69, 0.1);
}

/* Section Container */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.marketplace-specs-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.marketplace-specs-section .container {
  position: relative;
  z-index: 1;
}
.marketplace-specs-section .section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.marketplace-specs-section .section-background .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}
.marketplace-specs-section .section-background .noise-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.marketplace-specs-section .section-background .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.marketplace-specs-section .section-background .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 80, 234, 0.08), rgba(32, 187, 255, 0.08));
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}
.marketplace-specs-section .section-background .shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.marketplace-specs-section .section-background .shape.shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -80px;
  animation-delay: 7s;
}
.marketplace-specs-section .section-background .shape.shape-3 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: 50%;
  animation-delay: 14s;
}
.marketplace-specs-section .marketplace-filters {
  padding: 60px 0 20px;
  animation: fadeIn 0.6s ease-out;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-header {
  text-align: center;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-header .filters-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002a80;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #002a80, #0050ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-header .filters-subtitle {
  font-size: 1.1rem;
  color: #677788;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #677788;
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.3s ease;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 1rem;
  color: #002a80;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-input:focus {
  border-color: #0050ea;
  box-shadow: 0 0 0 4px rgba(0, 80, 234, 0.1);
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-input:focus + .search-icon {
  color: #0050ea;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-input::-moz-placeholder {
  color: #9ca3af;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .search-box .search-input::placeholder {
  color: #9ca3af;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .category-pills .category-pill {
  padding: 10px 24px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #ffffff;
  color: #677788;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .category-pills .category-pill:hover {
  border-color: rgba(0, 80, 234, 0.3);
  color: #0050ea;
  transform: translateY(-2px);
}
.marketplace-specs-section .marketplace-filters .filters-wrapper .filters-controls .category-pills .category-pill.active {
  background: linear-gradient(135deg, #0050ea, #20bbff);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 80, 234, 0.3);
}

/* New Card Styles v3.0 */
.marketplace-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  min-height: 200px;
}
.marketplace-logo-grid .marketplace-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 0;
}
.marketplace-logo-grid .marketplace-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.marketplace-logo-grid .marketplace-card .card-body .marketplace-logo {
  width: 100%;
  max-width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* Override old margin */
}
.marketplace-logo-grid .marketplace-card .card-body .marketplace-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.marketplace-logo-grid .marketplace-card .card-footer {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content */
  background: #ffffff;
  min-height: 50px;
}
.marketplace-logo-grid .marketplace-card .card-footer .marketplace-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  text-align: center;
  /* Center text */
  /* Removed truncation styles to show full text */
}
.marketplace-logo-grid .marketplace-card {
  /* Override old padding */
}
.marketplace-logo-grid .marketplace-card:hover {
  border-color: #d1d5db;
  transform: none;
  /* remove lift */
  box-shadow: none;
  /* remove shadow */
}
.marketplace-logo-grid .grid-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #677788;
}
.marketplace-logo-grid .grid-loading i {
  font-size: 2rem;
  color: #0050ea;
  margin-bottom: 16px;
}
.marketplace-logo-grid .grid-loading p {
  font-size: 1rem;
  margin: 0;
}
.marketplace-logo-grid .grid-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}
.marketplace-logo-grid .grid-empty i {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 16px;
}
.marketplace-logo-grid .grid-empty h4 {
  font-size: 1.25rem;
  color: #002a80;
  margin-bottom: 8px;
}
.marketplace-logo-grid .grid-empty p {
  color: #677788;
  margin: 0;
}

@media (max-width: 567px) {
  .card-body {
    padding: 10px !important;
  }
  .marketplace-logo-grid .modal-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
/* Tablet */
@media (min-width: 768px) {
  .marketplace-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
/* Desktop */
@media (min-width: 1024px) {
  .marketplace-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
/* Large Desktop */
@media (min-width: 1280px) {
  .marketplace-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
/* Extra Large Desktop */
@media (min-width: 1536px) {
  .marketplace-logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Responsive */
/* Tablet & Desktop */
@media (min-width: 768px) {
  .filters-wrapper {
    gap: 40px;
  }
  .filters-controls {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  .search-box {
    max-width: 320px;
  }
}
/* Desktop */
@media (min-width: 1024px) {
  .filters-title {
    font-size: 3rem;
  }
  .filters-subtitle {
    font-size: 1.2rem;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .marketplace-specs-section {
    padding: 60px 0 80px;
  }
  .shape {
    filter: blur(40px);
  }
  .shape-1 {
    width: 250px;
    height: 250px;
  }
  .shape-2 {
    width: 200px;
    height: 200px;
  }
  .shape-3 {
    width: 220px;
    height: 220px;
  }
}
.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.how-it-works .process-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, hsl(200, 80%, 55%), hsl(190, 80%, 60%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-it-works .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}
.how-it-works .process-card:hover:before {
  transform: scaleX(1);
}
.how-it-works .process-card .process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(138, 43, 226, 0.1);
}
.how-it-works .process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: white;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
}
.how-it-works .process-card .process-icon i {
  color: white;
}
.how-it-works .process-card .process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.how-it-works .process-card .process-description {
  color: hsl(240, 20%, 50%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hide original text */
.ecommerce-use-cases {
  background: #f8f9fa;
}
.ecommerce-use-cases .use-case-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}
.ecommerce-use-cases .use-case-card h4 {
  font-weight: 700;
  color: #002a80;
  margin-bottom: 15px;
}
.ecommerce-use-cases .use-case-card p {
  color: #677788;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.ecommerce-use-cases .use-case-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(55, 125, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #377DFF;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.ecommerce-use-cases .use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(55, 125, 255, 0.2);
}
.ecommerce-use-cases .use-case-card:hover .card-icon {
  background: #377DFF;
  color: #fff;
}/*# sourceMappingURL=ecommerce.css.map */