/* ========================================
   XKORD — Home Page Blocks
   ======================================== */

/* ========================================
   Block 3: Hero Slider
   ======================================== */

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

.xk-hero__swiper {
  height: 85vh;
  min-height: 600px;
  max-height: 920px;
}

.xk-hero__slide {
  position: relative;
  overflow: hidden;
}

.xk-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.xk-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xk-hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}

.xk-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px var(--xk-container-padding);
  text-align: center;
  z-index: 2;
}

.xk-hero__subtitle {
  font-family: var(--xk-font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.xk-hero__title {
  font-family: var(--xk-font-serif);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-white);
  line-height: 1.2;
  margin-bottom: 32px;
}

.xk-hero__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xk-white);
  border: 1px solid var(--xk-white);
  padding: 14px 40px;
  transition: background var(--xk-transition), color var(--xk-transition);
}

.xk-hero__cta:hover {
  background: var(--xk-white);
  color: var(--xk-black);
}

/* Hero pagination - lines */
.xk-hero__pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  width: auto !important;
}

.xk-hero__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: background var(--xk-transition);
}

.xk-hero__pagination .swiper-pagination-bullet-active {
  background: var(--xk-white);
}

/* Hero slide text animation */
.swiper-slide-active .xk-hero__subtitle,
.swiper-slide-active .xk-hero__title,
.swiper-slide-active .xk-hero__cta {
  animation: xk-fadeInUp 0.6s ease forwards;
}

.swiper-slide-active .xk-hero__subtitle { animation-delay: 0.1s; }
.swiper-slide-active .xk-hero__title { animation-delay: 0.2s; }
.swiper-slide-active .xk-hero__cta { animation-delay: 0.35s; }

.xk-hero__subtitle,
.xk-hero__title,
.xk-hero__cta {
  opacity: 0;
}

.swiper-slide-active .xk-hero__subtitle,
.swiper-slide-active .xk-hero__title,
.swiper-slide-active .xk-hero__cta {
  opacity: 1;
}

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

@media (max-width: 1024px) {
  .xk-hero__swiper {
    height: 75vh;
    min-height: 500px;
  }

  .xk-hero__title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .xk-hero__swiper {
    height: 70vh;
    min-height: 450px;
    max-height: 700px;
  }

  .xk-hero__content {
    padding: 40px var(--xk-container-padding);
  }

  .xk-hero__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .xk-hero__subtitle {
    font-size: 10px;
  }

  .xk-hero__cta {
    padding: 12px 28px;
    font-size: 11px;
  }

  .xk-hero__pagination .swiper-pagination-bullet {
    width: 28px;
  }
}


/* ========================================
   Block 4: Categories
   ======================================== */

.xk-categories {
  padding: var(--xk-section-padding) 0;
}

.xk-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.xk-categories__item {
  position: relative;
  display: block;
  overflow: hidden;
}

.xk-categories__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.xk-categories__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--xk-transition-slow);
}

.xk-categories__item:hover .xk-categories__img {
  transform: scale(1.05);
}

.xk-categories__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  text-align: center;
}

.xk-categories__name {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--xk-white);
}

@media (max-width: 1024px) {
  .xk-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .xk-categories {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-categories__grid {
    gap: 10px;
  }

  .xk-categories__name {
    font-size: 12px;
    letter-spacing: 0.15em;
  }

  .xk-categories__label {
    padding: 30px 16px 16px;
  }
}


/* ========================================
   Block 5 & 7: Product Carousels
   ======================================== */

.xk-products {
  padding: var(--xk-section-padding) 0;
}

.xk-products--best {
  background: var(--xk-bg-warm);
}

.xk-products__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 60px;
}

.xk-products__header .xk-section-title {
  margin-bottom: 0;
  text-align: left;
}

.xk-products__viewall {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xk-text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--xk-transition);
}

.xk-products__viewall:hover {
  color: var(--xk-text);
}

/* Product Card */
.xk-product-card {
  display: block;
}

.xk-product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--xk-bg-warm);
}

.xk-products--best .xk-product-card__image {
  background: var(--xk-white);
}

.xk-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xk-product-card__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--xk-transition-medium);
}

.xk-product-card:hover .xk-product-card__img--hover {
  opacity: 1;
}

.xk-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--xk-black);
  color: var(--xk-white);
  padding: 4px 10px;
}

.xk-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--xk-transition);
}

.xk-product-card:hover .xk-product-card__wishlist {
  opacity: 1;
}

.xk-product-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: var(--xk-text);
  stroke-width: 1.5;
  fill: none;
}

.xk-product-card__info {
  padding-top: 14px;
}

.xk-product-card__brand {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-text-muted);
}

.xk-product-card__name {
  font-size: 14px;
  font-weight: 400;
  color: var(--xk-text);
  margin-top: 4px;
  line-height: 1.4;
}

.xk-product-card__price {
  font-size: 14px;
  font-weight: 400;
  color: var(--xk-text);
  margin-top: 6px;
  display: block;
}

/* Product carousel navigation */
.xk-products__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.xk-products__nav-prev,
.xk-products__nav-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--xk-border);
  transition: border-color var(--xk-transition);
}

.xk-products__nav-prev:hover,
.xk-products__nav-next:hover {
  border-color: var(--xk-text);
}

.xk-products__nav-prev svg,
.xk-products__nav-next svg {
  width: 18px;
  height: 18px;
  stroke: var(--xk-text);
  stroke-width: 1.5;
  fill: none;
}

.xk-products__nav-prev.swiper-button-disabled,
.xk-products__nav-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .xk-products {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-products__header {
    margin-bottom: 30px;
  }

  .xk-products__nav {
    display: none;
  }

  .xk-product-card__wishlist {
    opacity: 1;
  }
}


/* ========================================
   Block 6: Promo Banner
   ======================================== */

.xk-promo {
  position: relative;
  overflow: hidden;
}

.xk-promo__link {
  display: block;
  position: relative;
  height: 500px;
}

.xk-promo__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.xk-promo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xk-promo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  transition: background var(--xk-transition-medium);
}

.xk-promo__link:hover .xk-promo__overlay {
  background: rgba(0,0,0,0.35);
}

.xk-promo__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.xk-promo__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--xk-white);
  display: block;
  margin-bottom: 16px;
}

.xk-promo__title {
  font-family: var(--xk-font-serif);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.xk-promo__cta {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xk-white);
  border-bottom: 1px solid var(--xk-white);
  padding-bottom: 4px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .xk-promo__link {
    height: 400px;
  }

  .xk-promo__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .xk-promo__link {
    height: 350px;
  }

  .xk-promo__title {
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .xk-promo__label {
    font-size: 10px;
  }
}


/* ========================================
   Block 8: Lookbook
   ======================================== */

.xk-lookbook {
  padding: var(--xk-section-padding) 0;
}

.xk-lookbook__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.xk-lookbook__item {
  position: relative;
  overflow: hidden;
  display: block;
}

.xk-lookbook__item--tall {
  grid-row: span 2;
}

.xk-lookbook__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.xk-lookbook__item--tall .xk-lookbook__image {
  aspect-ratio: auto;
  height: 100%;
}

.xk-lookbook__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--xk-transition-slow);
}

.xk-lookbook__item:hover .xk-lookbook__img {
  transform: scale(1.03);
}

.xk-lookbook__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--xk-transition-medium);
}

.xk-lookbook__item:hover .xk-lookbook__overlay {
  opacity: 1;
}

.xk-lookbook__name {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--xk-white);
  transform: translateY(10px);
  transition: transform var(--xk-transition-medium);
}

.xk-lookbook__item:hover .xk-lookbook__name {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .xk-lookbook {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-lookbook__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .xk-lookbook__item--tall {
    grid-row: span 1;
  }

  .xk-lookbook__item--tall .xk-lookbook__image {
    aspect-ratio: 3/4;
  }
}


/* ========================================
   Block 9: About Brand
   ======================================== */

.xk-about {
  padding: var(--xk-section-padding) 0;
  background: var(--xk-bg-warm);
}

.xk-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.xk-about__image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.xk-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xk-about__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--xk-text-muted);
  margin-bottom: 24px;
  display: block;
}

.xk-about__title {
  font-family: var(--xk-font-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-text);
  margin-bottom: 24px;
  line-height: 1.3;
}

.xk-about__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--xk-text-secondary);
  margin-bottom: 32px;
}

.xk-about__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-text);
  border-bottom: 1px solid var(--xk-text);
  padding-bottom: 2px;
  transition: opacity var(--xk-transition);
  display: inline-block;
}

.xk-about__link:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .xk-about__grid {
    gap: 40px;
  }

  .xk-about__title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .xk-about {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .xk-about__image {
    aspect-ratio: 16/9;
  }

  .xk-about__title {
    font-size: 24px;
  }

  .xk-about__text {
    font-size: 14px;
  }
}


/* ========================================
   Block 10: Features
   ======================================== */

.xk-features {
  padding: 80px 0;
  border-top: 1px solid var(--xk-border);
  border-bottom: 1px solid var(--xk-border);
}

.xk-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.xk-features__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.xk-features__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--xk-text);
  stroke-width: 1;
  fill: none;
}

.xk-features__title {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--xk-text);
}

.xk-features__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--xk-text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .xk-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .xk-features {
    padding: 50px 0;
  }

  .xk-features__grid {
    gap: 32px 20px;
  }
}


/* ========================================
   Block 11: Reviews
   ======================================== */

.xk-reviews {
  padding: var(--xk-section-padding) 0;
  background: var(--xk-bg-warm);
}

.xk-reviews__card {
  background: var(--xk-white);
  padding: 40px;
  text-align: center;
}

.xk-reviews__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.xk-reviews__star {
  width: 16px;
  height: 16px;
  fill: var(--xk-border);
}

.xk-reviews__star--filled {
  fill: var(--xk-text);
}

.xk-reviews__text {
  font-family: var(--xk-font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--xk-text);
}

.xk-reviews__author {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--xk-text-muted);
  margin-top: 24px;
  display: block;
}

.xk-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.xk-reviews__nav-prev,
.xk-reviews__nav-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--xk-transition);
}

.xk-reviews__nav-prev:hover,
.xk-reviews__nav-next:hover {
  opacity: 0.5;
}

.xk-reviews__nav-prev svg,
.xk-reviews__nav-next svg {
  width: 16px;
  height: 16px;
  stroke: var(--xk-text);
  stroke-width: 1.5;
  fill: none;
}

.xk-reviews__dots {
  display: flex;
  gap: 8px;
}

.xk-reviews__dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--xk-border);
  opacity: 1;
  transition: background var(--xk-transition);
}

.xk-reviews__dots .swiper-pagination-bullet-active {
  background: var(--xk-text);
}

@media (max-width: 768px) {
  .xk-reviews {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-reviews__card {
    padding: 30px 20px;
  }

  .xk-reviews__text {
    font-size: 15px;
  }
}


/* ========================================
   Block 12: Blog
   ======================================== */

.xk-blog {
  padding: var(--xk-section-padding) 0;
}

.xk-blog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 60px;
}

.xk-blog__header .xk-section-title {
  margin-bottom: 0;
  text-align: left;
}

.xk-blog__viewall {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xk-text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--xk-transition);
}

.xk-blog__viewall:hover {
  color: var(--xk-text);
}

.xk-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.xk-blog__card {
  display: block;
}

.xk-blog__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.xk-blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--xk-transition-slow);
}

.xk-blog__card:hover .xk-blog__img {
  transform: scale(1.05);
}

.xk-blog__content {
  padding-top: 20px;
}

.xk-blog__date {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--xk-text-muted);
}

.xk-blog__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--xk-text);
  margin-top: 8px;
  line-height: 1.4;
  transition: color var(--xk-transition);
}

.xk-blog__card:hover .xk-blog__title {
  color: var(--xk-text-secondary);
}

.xk-blog__excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--xk-text-secondary);
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .xk-blog__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .xk-blog {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-blog__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .xk-blog__header {
    margin-bottom: 30px;
  }
}


/* ========================================
   Block 13: Instagram
   ======================================== */

.xk-instagram {
  padding-top: 80px;
}

.xk-instagram__header {
  text-align: center;
  margin-bottom: 40px;
}

.xk-instagram__title {
  font-family: var(--xk-font-serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--xk-text);
}

.xk-instagram__subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--xk-text-muted);
  margin-top: 8px;
}

.xk-instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.xk-instagram__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.xk-instagram__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--xk-transition-slow);
}

.xk-instagram__item:hover .xk-instagram__img {
  transform: scale(1.05);
}

.xk-instagram__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--xk-transition);
}

.xk-instagram__item:hover .xk-instagram__item-overlay {
  opacity: 1;
}

.xk-instagram__item-overlay svg {
  width: 28px;
  height: 28px;
  fill: var(--xk-white);
  transform: scale(0.8);
  transition: transform var(--xk-transition);
}

.xk-instagram__item:hover .xk-instagram__item-overlay svg {
  transform: scale(1);
}

@media (max-width: 768px) {
  .xk-instagram {
    padding-top: 50px;
  }

  .xk-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
}


/* ========================================
   Block 14: Subscribe
   ======================================== */

.xk-subscribe {
  padding: var(--xk-section-padding) 0;
  background: var(--xk-black);
}

.xk-subscribe__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.xk-subscribe__title {
  font-family: var(--xk-font-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xk-white);
}

.xk-subscribe__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  margin-bottom: 40px;
}

.xk-subscribe__form {
  max-width: 500px;
  margin: 0 auto;
}

.xk-subscribe__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #666666;
  transition: border-color var(--xk-transition);
}

.xk-subscribe__field:focus-within {
  border-color: var(--xk-white);
}

.xk-subscribe__input {
  flex: 1;
  padding: 12px 0;
  color: var(--xk-white);
  font-size: 14px;
  font-weight: 300;
}

.xk-subscribe__input::placeholder {
  color: #666666;
}

.xk-subscribe__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666666;
  transition: background var(--xk-transition), border-color var(--xk-transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.xk-subscribe__btn:hover {
  background: var(--xk-white);
  border-color: var(--xk-white);
}

.xk-subscribe__btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--xk-white);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--xk-transition);
}

.xk-subscribe__btn:hover svg {
  stroke: var(--xk-black);
}

.xk-subscribe__consent {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}

.xk-subscribe__success {
  color: var(--xk-white);
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .xk-subscribe {
    padding: var(--xk-section-padding-sm) 0;
  }

  .xk-subscribe__title {
    font-size: 22px;
    letter-spacing: 0.15em;
  }
}
/* ========================================
   XKORD — Topbar & Header
   ======================================== */

/* ---- Topbar ---- */
.xk-topbar {
  background: var(--xk-black);
  height: var(--xk-topbar-height);
  overflow: hidden;
  transition: max-height var(--xk-transition), opacity var(--xk-transition);
  max-height: var(--xk-topbar-height);
  position: relative;
  z-index: 101;
}

.xk-topbar.is-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.xk-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--xk-topbar-height);
  padding: 0 var(--xk-container-padding);
  max-width: var(--xk-container);
  margin: 0 auto;
  position: relative;
}

.xk-topbar__marquee {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.xk-topbar__text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xk-white);
}

.xk-topbar__sep {
  color: #666666;
  font-size: 11px;
}


@media (max-width: 768px) {
  .xk-topbar__marquee {
    animation: xk-marquee 20s linear infinite;
  }

  .xk-topbar__text {
    font-size: 10px;
  }


}

@keyframes xk-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Header ---- */
.xk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--xk-white);
  border-bottom: 1px solid var(--xk-border);
  transition: height var(--xk-transition), box-shadow var(--xk-transition);
}

.xk-header.xk-header--scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.xk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--xk-header-height);
  padding: 0 40px;
  transition: height var(--xk-transition);
}

.xk-header--scrolled .xk-header__inner {
  height: var(--xk-header-height-sm);
}

/* Header zones */
.xk-header__left,
.xk-header__right {
  flex: 1;
  display: flex;
  align-items: center;
}

.xk-header__left {
  justify-content: flex-start;
}

.xk-header__right {
  justify-content: flex-end;
  gap: 20px;
}

.xk-header__center {
  flex: 0 0 auto;
}

/* Navigation */
.xk-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.xk-header__nav-link {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--xk-text);
  position: relative;
  padding: 4px 0;
}

.xk-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--xk-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--xk-transition);
}

.xk-header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Logo */
.xk-header__logo {
  display: block;
}

.xk-header__logo-text {
  font-family: var(--xk-font-sans);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--xk-text);
  text-transform: uppercase;
  line-height: 1;
}

.xk-header__logo-img {
  height: 20px;
  width: auto;
  display: block;
}

/* Header icons */
.xk-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--xk-text);
  transition: opacity var(--xk-transition);
}

.xk-header__icon:hover {
  opacity: 0.6;
}

.xk-header__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.xk-header__badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: var(--xk-text);
  color: var(--xk-white);
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Burger */
.xk-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  padding: 0;
}

.xk-header__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--xk-text);
  transition: transform var(--xk-transition), opacity var(--xk-transition);
}

.xk-header__burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.xk-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.xk-header__burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
.xk-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--xk-white);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  padding: calc(var(--xk-header-height) + var(--xk-topbar-height) + 20px) var(--xk-container-padding) 40px;
  overflow-y: auto;
}

.xk-mobile-nav.is-open {
  transform: translateX(0);
}

.xk-mobile-nav__link {
  display: block;
  font-size: 24px;
  font-family: var(--xk-font-serif);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xk-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--xk-border);
}

.xk-mobile-nav__link:first-child {
  border-top: 1px solid var(--xk-border);
}

@media (max-width: 1023px) {
  .xk-header__nav {
    display: none;
  }

  .xk-header__burger {
    display: flex;
  }

  .xk-header__logo-text {
    font-size: 22px;
    letter-spacing: 0.25em;
  }

  .xk-header__right {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .xk-header__right {
    gap: 12px;
  }

  .xk-header__icon--account {
    display: none;
  }
}
/* ========================================
   XKORD — CSS Variables & Base
   High-end Fashion Design System
   ======================================== */

:root {
  /* Colors */
  --xk-white: #FFFFFF;
  --xk-bg-warm: #F5F5F0;
  --xk-bg-warm2: #EDEDE8;
  --xk-black: #1A1A1A;
  --xk-dark: #000000;
  --xk-text: #1A1A1A;
  --xk-text-secondary: #666666;
  --xk-text-muted: #999999;
  --xk-border: #E5E5E5;
  --xk-border-light: rgba(255,255,255,0.1);

  /* Fonts */
  --xk-font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --xk-font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Container */
  --xk-container: 1440px;
  --xk-container-narrow: 1200px;
  --xk-container-padding: 60px;

  /* Transitions */
  --xk-transition: 300ms ease;
  --xk-transition-slow: 500ms ease;
  --xk-transition-medium: 400ms ease;

  /* Spacing */
  --xk-section-padding: 100px;
  --xk-section-padding-sm: 60px;

  /* Header */
  --xk-header-height: 70px;
  --xk-header-height-sm: 56px;
  --xk-topbar-height: 40px;
}

@media (max-width: 1024px) {
  :root {
    --xk-container-padding: 30px;
    --xk-section-padding: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --xk-container-padding: 16px;
    --xk-section-padding: 60px;
    --xk-section-padding-sm: 40px;
    --xk-header-height: 56px;
  }
}

/* ========================================
   Reset & Base
   ======================================== */

d {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--xk-font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--xk-text);
  background-color: var(--xk-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */

.xk-container {
  max-width: var(--xk-container);
  margin: 0 auto;
  padding-left: var(--xk-container-padding);
  padding-right: var(--xk-container-padding);
}

.xk-container--narrow {
  max-width: var(--xk-container-narrow);
}

.xk-section-title {
  font-family: var(--xk-font-serif);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--xk-text);
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .xk-section-title {
    font-size: 13px;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
  }
}

/* Scroll Reveal */
.xk-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.xk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.xk-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.xk-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.xk-reveal-left.is-visible,
.xk-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Placeholder image backgrounds */
.xk-placeholder {
  background: linear-gradient(135deg, #E8E8E3 0%, #D4D4CF 100%);
  position: relative;
}

.xk-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
}

.xk-placeholder--dark {
  background: linear-gradient(135deg, #3A3A3A 0%, #2A2A2A 100%);
}

.xk-placeholder--dark::after {
  border-color: rgba(255,255,255,0.15);
}
/* ========================================
   XKORD — Footer
   ======================================== */

.xk-footer {
  background: var(--xk-black);
  padding: 80px 0 0;
}

.xk-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Brand column */
.xk-footer__logo {
  font-family: var(--xk-font-sans);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--xk-white);
  text-transform: uppercase;
  display: inline-block;
}

.xk-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.xk-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.xk-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.6);
  transition: color var(--xk-transition);
}

.xk-footer__social-link:hover {
  color: var(--xk-white);
}

.xk-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Column headings */
.xk-footer__heading {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--xk-white);
  margin-bottom: 24px;
}

/* Navigation links */
.xk-footer__nav {
  display: flex;
  flex-direction: column;
}

.xk-footer__nav a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 2.4;
  transition: color var(--xk-transition);
}

.xk-footer__nav a:hover {
  color: var(--xk-white);
}

/* Contacts */
.xk-footer__contact {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 2.4;
  transition: color var(--xk-transition);
}

.xk-footer__contact:hover {
  color: var(--xk-white);
}

.xk-footer__schedule {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* Bottom bar */
.xk-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
  margin-top: 60px;
}

.xk-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.xk-footer__legal {
  display: flex;
  gap: 24px;
}

.xk-footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  transition: color var(--xk-transition);
}

.xk-footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* Mobile accordion */
.xk-footer__heading-toggle {
  display: none;
}

.xk-footer__col-body {
  display: block;
}

@media (max-width: 1024px) {
  .xk-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .xk-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .xk-footer {
    padding: 60px 0 0;
  }

  .xk-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .xk-footer__col--brand {
    padding-bottom: 32px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .xk-footer__col:not(.xk-footer__col--brand) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .xk-footer__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 0;
    cursor: pointer;
  }

  .xk-footer__heading-toggle {
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
  }

  .xk-footer__heading-toggle::before,
  .xk-footer__heading-toggle::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.6);
    transition: transform var(--xk-transition);
  }

  .xk-footer__heading-toggle::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .xk-footer__heading-toggle::after {
    width: 1px;
    height: 12px;
    left: 50%;
    top: 0;
  }

  .xk-footer__heading.is-open .xk-footer__heading-toggle::after {
    transform: rotate(90deg);
  }

  .xk-footer__col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--xk-transition), padding var(--xk-transition);
    padding-bottom: 0;
  }

  .xk-footer__heading.is-open + .xk-footer__col-body {
    max-height: 300px;
    padding-bottom: 20px;
  }

  .xk-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 32px;
    padding: 24px 0;
  }

  .xk-footer__legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
