.hero-slider {
  position: relative;
  overflow: hidden; }

.hero-slide {
  position: relative; }
  .hero-slide img {
    width: 100%;
    height: auto; }

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  pointer-events: none; }

.hero-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  width: 100%;
  padding: 0 15px; }

.hero-slider .swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  text-align: left;
  display: flex;
  gap: 4px; }

.hero-slider .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s; }
  .hero-slider .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px; }

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 16px; }
  .hero-slider .swiper-button-prev::after,
  .hero-slider .swiper-button-next::after {
    display: none; }

.hero-navigation {
  display: flex;
  gap: 10px; }

.section-home {
  padding: 60px 0; }

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
  color: #1a1a1a; }
  .section-title-left {
    text-align: left; }

.pick-by-gender-section {
  padding: 72px 0 72px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1520px;
  margin: 0 auto; }

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 400/600;
  display: flex;
  flex-direction: column; }
  .category-card:hover .category-card-image img {
    transform: scale(1.05); }

.category-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }
  .category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; }

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 164px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 24px 24px 32px; }

.category-card-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1px;
  color: #fff;
  margin: 0;
  text-transform: uppercase; }

.category-card-button-wrapper {
  display: flex;
  align-items: center;
  gap: 0; }

.category-card-button {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  min-height: 36px;
  width: fit-content;
  pointer-events: none; }
  .category-card:hover .category-card-button {
    background: #D80000; }
    .category-card:hover .category-card-button .category-card-button-icon {
      background: #1a1a1a; }

.category-card-button-text {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  white-space: nowrap; }

.category-card-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s; }
  .category-card-button-icon i {
    font-size: 12px;
    color: #fff; }

.news-section {
  padding: 0 40px 72px; }

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px; }

.news-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -1.2px;
  color: #0a0a0a;
  margin: 0; }

.news-viewall-btn {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none; }
  .news-viewall-btn:hover .news-viewall-text {
    background: #D80000; }
  .news-viewall-btn:hover .news-viewall-icon {
    background: #0a0a0a; }

.news-viewall-text {
  background: #0a0a0a;
  color: #fff;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px; }

.news-viewall-icon {
  background: #D80000;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }
  .news-viewall-icon i {
    color: #fff;
    font-size: 16px; }

.news-slider {
  position: relative; }
  .news-slider .swiper-button-prev,
  .news-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    color: #0a0a0a;
    /*
        margin-top: -20px;
        top: calc(240px / 2);
*/
    top: 45%; }
    .news-slider .swiper-button-prev::after,
    .news-slider .swiper-button-next::after {
      font-size: 14px;
      font-weight: 700; }
  .news-slider .swiper-button-prev {
    left: 20px; }
  .news-slider .swiper-button-next {
    right: 20px; }

.news-article-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit; }
  .news-article-card:hover .news-article-image img {
    transform: scale(1.05); }
  .news-article-card:hover .news-article-link {
    color: #D80000; }

.news-article-image {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .news-article-image img {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; }

.news-article-content {
  padding: 20px 24px 20px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px; }

.news-article-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 7px;
  min-height: 32px;
  border: 1px solid #0a0a0a;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: -0.1px;
  color: #0a0a0a;
  width: fit-content; }

.news-article-text {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.news-article-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #0a0a0a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.news-article-excerpt {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #737373;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.news-article-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.1px;
  color: #0a0a0a;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s; }

.news-progress {
  padding-top: 32px; }

.news-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 100px;
  position: relative; }

.news-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 12%;
  background: #404040;
  border-radius: 100px;
  transition: width 0.3s ease; }

.product-group-section {
  padding-bottom: 72px; }

.product-group-banner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.product-group-banner-image {
  width: 100%;
  height: 400px;
  object-fit: cover; }

.product-group-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  padding-top: 160px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  display: flex;
  flex-direction: column;
  gap: 16px; }

.product-group-logo {
  max-width: 240px;
  height: auto; }
  .product-group-logo img {
    width: 100%;
    height: auto; }

.product-group-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-radius: 2px; }

.product-group-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 8px;
  min-height: 40px;
  background: rgba(10, 10, 10, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 2px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase; }
  .product-group-tab:hover {
    background: rgba(215, 0, 0, 0.8); }
  .product-group-tab.active {
    background: #D80000;
    font-weight: 700;
    padding: 10px 24px 8px; }

.product-group-products {
  position: relative;
  padding: 0;
  margin-top: 30px; }

.product-group-slider {
  position: relative; }
  .product-group-slider .swiper-button-prev,
  .product-group-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    color: #0a0a0a;
    margin-top: -20px;
    top: 50%;
    transform: translateY(-50%); }
    .product-group-slider .swiper-button-prev::after,
    .product-group-slider .swiper-button-next::after {
      font-size: 14px;
      font-weight: 700; }
  .product-group-slider .swiper-button-prev {
    left: 15px; }
  .product-group-slider .swiper-button-next {
    right: 15px; }

.product-group-progress {
  padding: 30px 40px 0; }

#productGroup-protrek-now .product-group-progress,
#productGroup-vintage-now .product-group-progress,
#productGroup-gshock-now .product-group-progress,
#productGroup-babyg-now .product-group-progress,
#productGroup-edifice-now .product-group-progress,
#productGroup-timeless-now .product-group-progress,
#productGroup-sheen-now .product-group-progress {
  padding: 10px 0px 0; }

.product-group-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 100px;
  position: relative;
  overflow: hidden; }

.product-group-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 12%;
  background: #404040;
  border-radius: 100px;
  transition: width 0.3s ease; }

.product-group-loading,
.product-group-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  font-size: 14px;
  color: #666;
  gap: 10px; }
  .product-group-loading i,
  .product-group-error i {
    font-size: 20px;
    color: #D80000; }

.product-group-error {
  color: #D80000; }

.swiper-wrapper.is-loading {
  opacity: 0.6;
  pointer-events: none; }

.product-group-viewall {
  display: flex;
  justify-content: center;
  padding-top: 30px; }

.product-group-viewall-btn {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  background: #0a0a0a; }
  .product-group-viewall-btn:hover {
    background: #D80000; }

.product-group-viewall-text {
  color: #fff;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px; }

.featured-collections-section {
  padding: 72px 0; }

.featured-collections-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -1.2px;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: left; }

.collections-slider {
  position: relative; }
  .collections-slider .swiper-button-prev,
  .collections-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    color: #1a1a1a;
    margin-top: -20px; }
    .collections-slider .swiper-button-prev::after,
    .collections-slider .swiper-button-next::after {
      font-size: 16px;
      font-weight: 700; }
  .collections-slider .swiper-button-prev {
    left: 15px; }
  .collections-slider .swiper-button-next {
    right: 15px; }

.collections-swiper {
  overflow: hidden; }
  .collections-swiper .swiper-slide {
    height: auto; }

.collection-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 566px;
  cursor: pointer;
  text-decoration: none; }
  .collection-card:hover .collection-card-image img {
    transform: scale(1.05); }

.collection-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }
  .collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; }

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 212px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px; }

.collection-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.collection-card-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1px;
  color: #fff;
  margin: 0;
  text-transform: uppercase; }

.collection-card-button-wrapper {
  display: flex;
  align-items: center; }
  .collection-card-button-wrapper:hover .collection-card-button {
    background: #D80000; }
  .collection-card-button-wrapper:hover .collection-card-button-icon {
    background: #0a0a0a; }

.collection-card-button {
  display: inline-flex;
  align-items: center;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  height: 40px;
  border: none;
  cursor: pointer; }
  .collection-card-button:hover {
    background: #D80000;
    color: #fff; }

.collection-card-button-icon {
  width: 40px;
  height: 40px;
  background: #D80000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  flex-shrink: 0; }
  .collection-card-button-icon i {
    color: #fff;
    font-size: 16px; }

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards; }

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out; }
  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0); }

@media (max-width: 1199px) {
  .pick-by-gender-section {
    padding: 60px 0px 60px; }
  .category-grid {
    grid-template-columns: repeat(2, 1fr); }
  .news-section {
    padding: 0 20px 60px; }
  .news-slider .swiper-button-prev {
    left: 10px; }
  .news-slider .swiper-button-next {
    right: 10px; }
  .product-group-products {
    padding: 0 20px; }
  .product-group-slider .swiper-button-prev {
    left: 0; }
  .product-group-slider .swiper-button-next {
    right: 0; }
  .product-group-progress {
    padding: 30px 20px 0; }
  .featured-collections-section {
    padding: 60px 0; }
  .collections-slider .swiper-button-prev {
    left: 0; }
  .collections-slider .swiper-button-next {
    right: 0; } }

@media (max-width: 991px) {
  .hero-slide {
    aspect-ratio: auto;
    height: 400px; }
  .hero-controls {
    bottom: 20px; }
  .news-title {
    font-size: 36px;
    line-height: 28px; }
  .news-article-image {
    height: 200px; }
  .news-slider .swiper-button-prev,
  .news-slider .swiper-button-next {
    top: calc(200px / 2); }
  .product-group-banner-image {
    height: 350px; }
  .product-group-banner-overlay {
    padding: 20px;
    padding-top: 100px; }
  .product-group-tab {
    font-size: 14px;
    padding: 8px 10px;
    min-height: 36px; }
    .product-group-tab.active {
      padding: 8px 16px; } }

@media (max-width: 767px) {
  .section-home {
    padding: 40px 0; }
  .section-title {
    font-size: 24px; }
  .pick-by-gender-section {
    padding: 40px 0 40px; }
  .category-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4px;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none; }
    .category-grid::-webkit-scrollbar {
      display: none; }
  .category-card {
    flex: 0 0 auto;
    min-width: 170px;
    max-width: 170px;
    scroll-snap-align: start;
    aspect-ratio: 400/600; }
  .category-card-overlay {
    height: auto;
    padding: 12px;
    padding-top: 100px;
    gap: 8px;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent); }
  .category-card-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -1px; }
  .category-card-button {
    min-height: 36px;
    background: #0a0a0a; }
    .category-card-button .category-card-button-text {
      font-size: 13px;
      padding: 6px 12px; }
    .category-card-button .category-card-button-icon {
      width: 36px;
      height: 36px;
      background: #d70000; }
  .hero-slide {
    height: 300px; }
  .hero-controls {
    bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%; }
    .hero-controls .custom-container {
      padding: 0;
      margin: 0;
      width: 100%; }
  .news-section {
    padding: 0 16px 40px; }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px; }
  .news-title {
    font-size: 28px;
    line-height: 36px; }
  .news-viewall-text {
    font-size: 14px;
    padding: 12px 16px; }
  .news-viewall-icon {
    padding: 12px 10px; }
  .news-article-image {
    height: 180px; }
  .news-article-content {
    padding: 16px;
    gap: 16px; }
  .news-article-title {
    font-size: 16px;
    line-height: 24px; }
  .news-article-excerpt {
    font-size: 14px;
    line-height: 20px; }
  .news-article-link {
    font-size: 14px; }
  .news-slider .swiper-button-prev,
  .news-slider .swiper-button-next {
    display: none; }
  .news-progress {
    padding-top: 24px; }
  .product-group-section {
    padding-bottom: 48px; }
  .product-group-banner-image {
    height: 192px;
    object-fit: cover; }
  .product-group-products {
    padding: 0;
    margin-top: 10px; }
  .product-group-banner-overlay {
    padding: 12px;
    padding-top: 160px;
    gap: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }
  .product-group-logo {
    max-width: 130px;
    margin-bottom: 0; }
    .product-group-logo img {
      width: 100%;
      height: auto; }
  .product-group-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    /*
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
*/ }
    .product-group-tabs::-webkit-scrollbar {
      display: none; }
  .product-group-tab {
    white-space: nowrap;
    font-size: 18px;
    line-height: 25px;
    padding: 7px 14px 5px;
    min-height: 36px;
    flex-shrink: 0;
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); }
    .product-group-tab.active {
      padding: 7px 14px 5px;
      background: #D80000; }
  .product-group-slider .swiper-button-prev,
  .product-group-slider .swiper-button-next {
    display: none; }
  .product-group-progress {
    padding: 24px 40px 0; }
  .product-group-progress-bar {
    height: 4px;
    background: #e5e5e5;
    border-radius: 100px; }
  .product-group-progress-fill {
    background: #404040;
    border-radius: 100px; }
  .product-group-viewall {
    padding-top: 24px;
    display: flex;
    justify-content: center; }
  .product-group-viewall-btn {
    display: inline-flex;
    align-items: stretch;
    background: #0a0a0a;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none; }
    .product-group-viewall-btn:hover {
      background: #D80000; }
      .product-group-viewall-btn:hover .product-group-viewall-icon {
        background: #0a0a0a; }
  .product-group-viewall-text {
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    letter-spacing: 0px;
    text-transform: uppercase;
    display: flex;
    align-items: center; }
  .product-group-viewall-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D80000;
    padding: 0;
    width: 36px;
    transition: background 0.3s; }
    .product-group-viewall-icon img {
      width: 20px;
      height: 20px;
      object-fit: contain; }
    .product-group-viewall-icon i {
      color: #fff;
      font-size: 16px; }
  .featured-collections-section {
    padding: 40px 0; }
  .featured-collections-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px; }
  .collection-card {
    height: 265px; }
  .collection-card-overlay {
    height: 150px;
    padding: 16px; }
  .collection-card-title {
    font-size: 24px;
    line-height: 32px; }
  .collection-card-button {
    font-size: 14px;
    padding: 8px 16px;
    height: 36px; }
  .collection-card-button-icon {
    width: 36px;
    height: 36px; } }

@media (max-width: 767px) {
  .news-section {
    padding: 0 0px 40px; } }

@media (max-width: 767px) {
  .news-slider .news-article-image {
    height: auto; } }
