/* United Apparel Group - Premium Styles */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Swiper Pagination */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 30px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e5e7eb;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #111827; /* Brand Black */
  width: 24px;
  border-radius: 5px;
  opacity: 1;
}

/* Ensure container has space for pagination */
.product-swiper,
.hero-swiper {
  padding-bottom: 50px !important;
}
/* Specific overwrite for white pagination on dark bg */
.hero-swiper .swiper-pagination-bullet-active {
  background-color: #fff !important;
}

.product-swiper .swiper-pagination-bullet {
  background: #000;
}

/* Premium Hover Effects */
.hover-reveal {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Glassmorphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Premium Card Hover */
.premium-card {
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Utilities */
.rotate-180 {
  transform: rotate(180deg);
}
