* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background: #f5f2f1;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: 100%;

  display: block;
}

button,
input {
  font: inherit;
}

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

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  padding: 6px 25px;
  font-size: 14px;
  font-weight: 400;
  transition: 0.25s ease;
}

.btn-brand {
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: var(--color-white);
}

.btn-brand:hover {
  background: #3a1216;
  color: var(--color-white);
}

.btn-outline-brand {
  border: 1px solid rgba(40, 14, 16, 0.65);
  color: var(--color-dark);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-outline-lightbg {
  background: rgba(255, 255, 255, 0.6);
}

.btn-lang {
  min-width: 74px;
  background: rgba(40, 14, 16, 0.2);
  border: 1px solid rgba(40, 14, 16, 1);
  color: var(--ss-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Header */
.site-header {
  inset: 0 0 auto;
  z-index: 20;
  padding: 14px 70px;
  transition: all 0.4s ease-in-out;
}

/* Compact sticky look when scrolling back up */
.site-header.is-scrolled {
  background-color: var(--ss-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);


}

.site-header.is-scrolled .navbar-brand,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .btn-lang,
.site-header.is-scrolled .btn-brand {
  color: var(--ss-white);
}

.site-header.is-scrolled .btn-brand:hover {
  color: var(--ss-white);
  background: var(--ss-primary);
  border: 1px solid var(--ss-primary);
}



.site-header.is-scrolled .btn-lang:hover {
  color: var(--ss-white);
  border: 1px solid var(--ss-white);
}

.site-header.is-scrolled .navbar-toggler img {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .navbar-toggler {
  border: 1px solid var(--ss-white);
}

.site-header .offcanvas .btn-brand {
  background-color: var(--ss-primary) !important;
  color: var(--ss-white) !important;
}

.site-header .offcanvas .btn-lang {
  background-color: rgba(40, 14, 16, 0.2) !important;
  border: 1px solid var(--ss-primary) !important;
  color: var(--ss-white) !important;
}


.site-header.is-scrolled .nav-link.active {
  color: var(--ss-white);
}

.site-header.is-scrolled .btn-brand {
  color: var(--ss-primary);
  background: var(--ss-white);
  border: 1px solid var(--ss-white);
}


.site-header.is-scrolled .btn-lang {
  color: var(--ss-white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}

@media (max-width:1200px) {
  .site-header {
    padding: 14px 35px;
  }
}

@media (max-width:767px) {
  .site-header {
    padding: 14px 14px;
  }
}




/* Smart Sticky Header – hides header off-screen */
.header-hidden {
  transform: translateY(-100%) !important;
}

.navbar {
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-dark);
}

.brand__coin {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand__sub {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: end;
  margin-top: 4px;
}

.main-nav .nav-link {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  padding: 0;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--ss-black);
}

.header-actions .btn {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-toggle {
  border: none;
  box-shadow: none !important;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(40, 14, 16, 0.08);
  border: 1px solid var(--ss-primary);
  color: var(--ss-primary);
  display: grid;
  place-items: center;
}

.navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
}

.navbar-toggler img {
  width: 22px;
  height: 22px;
}

.header-actions .btn-lang,
.header-actions .btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions .btn-outline-brand {
  color: var(--ss-primary);
  border: 1px solid var(--ss-primary);
  background-color: var(--ss-white);
}

.header-actions .btn-lang:hover,
.header-actions .btn-lang:focus,
.header-actions .btn-lang:active,
.header-actions .btn-brand:hover,
.header-actions .btn-brand:focus,
.header-actions .btn-brand:active {
  opacity: 1;
  color: inherit;
  background: inherit;
  border-color: inherit;
  text-decoration: none;
  box-shadow: none;
}




/* Mobile Menu */
.mobile-menu {
  width: min(402px, 100vw);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background: #f4f2f2;
  padding: 32px 24px;
}

.mobile-menu__top {
  margin-bottom: 48px;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ss-primary);
  background: rgba(40, 14, 16, 0.2);
  color: var(--ss-primary);
}

.mobile-nav {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  font-size: 18px;
  color: var(--color-text);
}

.mobile-menu__actions .btn {
  min-height: 46px;
}

.offcanvas {
  padding: 14px 24px;
  width: 100%;
}

/* Hero */
/* =========================
   HERO SECTION - SEVEN SEAS
========================= */

/* HERO FULL SCREEN */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #f6f2ef;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: auto;
  background:
    url("../imgs/home/hero-bg.png") center top / cover no-repeat;
  z-index: 0;
}

.hero-top {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  padding-bottom: 140px;
  flex: 0 0 auto;
}


.hero-copy {
  /* max-width: 860px; */
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 700;
  color: #000000;
}

.hero-copy p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 20px;
  line-height: 1.45;
  color: #454545;
}

.hero-cta {
  margin-top: 28px;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  height: 540px;

  background: linear-gradient(180deg,
      rgba(42, 6, 13, 0) 0%,
      rgba(42, 6, 13, 0) 28%,
      var(--ss-primary) 28%,
      var(--ss-primary) 100%);
}


/* =========================
   HERO SWIPER - COVERFLOW
========================= */

.hero-showcase>.container {
  height: 100%;
  min-height: 100%;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  overflow: visible;
}

.hero-swiper .swiper-wrapper {
  align-items: center;
  /* justify-content: center; */
}



.hero-swiper .swiper-slide {
  width: 100%;
  min-height: 100% !important;
  height: 550px !important;
  /* opacity: 0.5; */
    transform:  scale(1)  translateX(-300px) !important;
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  cursor: pointer;
}

.hero-swiper .swiper-slide-active {
  transform: scale(1.3) translateX(-300px) !important;
  opacity: 1;
  z-index: 2;
}

html[dir="rtl"] .hero-swiper .swiper-slide {
  transform:  scale(1)  translateX(300px) !important;
}

html[dir="rtl"] .hero-swiper .swiper-slide-active {
  transform: scale(1.3) translateX(300px) !important;
}

.hero-swiper .swiper-slide img {
  width: auto;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

@media (max-width:1600px) {
  .hero-swiper .swiper-slide {
    transform:  scale(0.9)  translateX(-250px) !important;
  }

  .hero-swiper .swiper-slide-active {
    transform: scale(1.3) translateX(-200px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide {
    transform:  scale(0.9)  translateX(250px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide-active {
    transform: scale(1.3) translateX(200px) !important;
  }




}

@media (max-width:1400px) {
    .hero-top {
    padding-bottom: 0;
  }

  .hero-swiper .swiper-slide {
    transform:  scale(0.7)  translateX(-320px) !important;
  }

  .hero-swiper .swiper-slide-active {
    transform: scale(1) translateX(-270px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide {
    transform:  scale(0.7)  translateX(320px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide-active {
    transform: scale(1) translateX(270px) !important;
  }

}



@media (max-width: 1199.98px) {
  .hero-top {
    padding-bottom: 0;
  }

  .hero-swiper .swiper-slide {
    transform:  scale(0.7)  translateX(-250px) !important;
  }

  .hero-swiper .swiper-slide-active {
    transform: scale(1.1) translateX(-200px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide {
    transform:  scale(0.7)  translateX(250px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide-active {
    transform: scale(1.1) translateX(200px) !important;
  }


}

@media (max-width:1024px){
    .hero-swiper .swiper-slide {
    transform:  scale(0.9)  translateX(0px) !important;
    margin-top: -130px;
    align-items: flex-start;
  }

  .hero-swiper .swiper-slide-active {
    transform: scale(1.3) translateX(0px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide {
    transform:  scale(0.9)  translateX(0px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide-active {
    transform: scale(1.3) translateX(0px) !important;
  }

}

@media (max-width: 991.98px) {
  .hero-swiper .swiper-slide {

    transform: scale(0.9) translateX(0px) !important;

  }

  .hero-swiper .swiper-slide-active {
    transform: scale(1) translateX(0px) !important;

  }

  html[dir="rtl"] .hero-swiper .swiper-slide {
    transform:  scale(0.9)  translateX(0px) !important;
  }

  html[dir="rtl"] .hero-swiper .swiper-slide-active {
    transform: scale(1) translateX(0px) !important;
  }
}

@media (max-width: 767.98px) {
  .hero-swiper {
    padding: 0;
  }

  .hero-swiper .swiper-slide{
    margin-bottom: 0;
    margin-top: -80px;
    height: 450px !important;
  }

}


/* ===== Bottom row ===== */

.hero-info-row {
  position: absolute;
  left: 34px;
  right: 40%;
  bottom: 75px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

html[dir="rtl"] .hero-info-row {
flex-direction: row-reverse;
}

.hero-meta--counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ss-white);
  flex: 0 0 auto;
  align-self: center;
  left: 16%;
}

.hero-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.hero-counter strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--ss-white);
}

.hero-counter span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-arrow {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--ss-white);
  padding: 0;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  transition: opacity 0.2s ease, transform 0.2s ease;

}

html[dir="rtl"] .hero-arrow {
  transform: rotate(180deg);
}
  

.hero-arrow:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

html[dir="rtl"] .hero-arrow:hover {
  transform: rotate(180deg) translateY(-1px);
}

.hero-card-copy {
  position: static;
  margin-left: 0;
  width: 100%;
  max-width: 350px;
  color: var(--ss-white);
  z-index: 5;
  text-align: left;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

html[dir="rtl"] .hero-card-copy {
  text-align: right;
}
  

.hero-card-copy.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-card-copy h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--ss-white);
}

.hero-card-copy p {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-details {
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--ss-white);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-details:hover {
  color: var(--ss-white);
  border-color: var(--ss-white);
  background: transparent;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1600px) {
  .hero-meta--counter {
    left: 4%;
  }

  .hero-info-row{
    right: 32%;
  }

  .hero-card-copy h2{
    font-size: 24px
  }


}

@media (max-width: 1399.98px) {
  .hero-coin--slide.is-current {
    width: 550px;
    left: 82px;
    top: -42px;
  }

  .hero-coin--slide.is-next {
    width: 205px;
    left: 700px;
    top: 28px;
  }

  .hero-meta--counter {
    left: 4%;
  }


}

@media (max-width:1300px) {
      .hero-info-row {
        right: 27%;
      }

}

@media (max-width: 1199.98px) {
  .hero-showcase {
    height: 330px;
  }

  .hero-stage {
    min-height: 330px;
  }

  .hero-coin--silver {
    width: 214px;
    left: -154px;
    top: 48px;
  }

  .hero-coin--slide.is-current {
    width: 488px;
    left: 70px;
    top: -38px;
  }

  .hero-coin--slide.is-next {
    width: 180px;
    left: 590px;
    top: 28px;
  }

  .hero-coin--slide.is-after {
    width: 164px;
    left: calc(100% - 84px);
    top: 28px;
  }

  .hero-info-row {
    left: 12px;
    right: 25%;
    bottom: 75px;
  }



  .hero-card-copy h2 {
    font-size: 24px;
  }
}



@media (max-width: 1024px) {
  .hero-showcase {
    height: 280px;
  }

  .hero-stage {
    min-height: 280px;
  }

  .hero-coin--silver {
    width: 170px;
    left: -128px;
    top: 54px;
  }

  .hero-coin--slide.is-current {
    width: 380px;
    left: 48px;
    top: -18px;
  }

  .hero-coin--slide.is-next {
    width: 140px;
    left: 430px;
    top: 42px;
  }

  .hero-coin--slide.is-after {
    width: 128px;
    left: calc(100% - 72px);
    top: 44px;
  }

  .hero-info-row {
    left: 0;
    width: 100%;
    right: 50%;
    bottom: 20%;
    /* gap: 20px; */
    flex-direction: column;
  }



  .hero-card-copy {
    max-width: auto;
    margin: auto;
  }

  .hero-card-copy h2 {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .hero-showcase {
    height: 240px;
  }

  .hero-stage {
    min-height: 240px;
  }

  .hero-coin--silver {
    width: 126px;
    left: -96px;
    top: 72px;
  }

  .hero-coin--slide.is-current {
    width: 272px;
    left: 18px;
    top: 8px;
  }

  .hero-coin--slide.is-next {
    width: 106px;
    left: 255px;
    top: 72px;
  }

  .hero-coin--slide.is-after {
    width: 98px;
    left: calc(100% - 58px);
    top: 76px;
  }



  .hero-counter strong {
    font-size: 16px;
  }

  .hero-counter span {
    font-size: 12px;
  }

  .hero-arrow {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }


  .hero-card-copy h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .hero-card-copy p {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .hero-details {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 11px;
  }

      .hero-info-row{
    bottom: 0%;
  }


}

@media (max-width:360px) {
      .hero-info-row{
    bottom: 0%;
  }
}

/* CTA buttons refinement */
.hero-section .btn-brand,
.hero-section .btn-outline-brand {
  min-height: 40px;
  padding: 9px 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

html[dir="rtl"] .hero-section .btn-brand,
html[dir="rtl"] .hero-section .btn-outline-brand {
flex-direction: row-reverse;
}

html[dir="rtl"] .hero-section .btn-brand i,
html[dir="rtl"] .hero-section .btn-outline-brand i {
transform: rotate(180deg);
}



/* =========================
   RESPONSIVE
========================= */



@media (max-width: 1399.98px) {
  .hero-coin--main {
    width: 550px;
    left: 82px;
  }

  .hero-coin--dinar {
    width: 205px;
    left: 700px;
  }

  .hero-card-copy {
    right: 145px;
  }
}

@media (max-width: 1199.98px) {


  .hero-showcase {
    height: 330px;
  }

  .hero-stage {
    min-height: 330px;
  }

  .hero-coin--silver {
    width: 214px;
    left: -154px;
    top: 48px;
  }

  .hero-coin--main {
    width: 488px;
    left: 70px;
    top: -38px;
  }

  .hero-coin--dinar {
    width: 180px;
    left: 590px;
    top: 28px;
  }

  .hero-coin--portrait {
    width: 164px;
    right: -98px;
    top: 28px;
  }

  .hero-card-copy {
    right: 78px;
    top: 130px;
  }
}

@media (max-width:1024px) {
  
  .hero-top{
    height: 45vh;
  }

  .hero-showcase{
    height: 55vh;
  }
}

@media (max-width: 991.98px) {



  .hero-copy h1 {
    font-size: clamp(32px, 5.2vw, 48px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-showcase {
    height: 280px;
    background:
      linear-gradient(180deg,
        rgba(42, 6, 13, 0) 0%,
        rgba(42, 6, 13, 0) 26%,
        #320009 26%,
        #320009 100%);
  }

  .hero-stage {
    min-height: 280px;
  }

  .hero-coin--silver {
    width: 170px;
    left: -128px;
    top: 54px;
  }

  .hero-coin--main {
    width: 380px;
    left: 48px;
    top: -18px;
  }

  .hero-coin--dinar {
    width: 140px;
    left: 430px;
    top: 42px;
  }

  .hero-coin--portrait {
    width: 128px;
    right: -86px;
    top: 44px;
  }

  .hero-card-copy {
    right: 24px;
    top: 122px;
    max-width: auto;
  }

  .hero-card-copy h2 {
    font-size: 22px;
  }

  .hero-meta--counter {
    left: 12px;
    bottom: 32px;
  }

}

@media (max-width: 767.98px) {
    .hero-top{
    height: 50vh;
  }

  .hero-showcase{
    height: 50vh; 
  }

  .hero-top {
    padding-top: 42px;

  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 14px;
    max-width: 320px;
  }

  .hero-cta {
    margin-top: 22px;
    flex-direction: column;
  }

  .hero-showcase {
    height: 240px;
  }

  .hero-stage {
    min-height: 240px;
  }

  .hero-coin--silver {
    width: 126px;
    left: -96px;
    top: 72px;
  }

  .hero-coin--main {
    width: 272px;
    left: 18px;
    top: 8px;
  }

  .hero-coin--dinar {
    width: 106px;
    left: 255px;
    top: 72px;
  }

  .hero-coin--portrait {
    width: 98px;
    right: -70px;
    top: 76px;
  }

  .hero-card-copy {
    left: 156px;
    right: auto;
    top: 128px;

  }

  .hero-card-copy h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .hero-card-copy p {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .hero-details {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero-meta--counter {
    left: 8px;
    bottom: 22px;
    gap: 8px;
  }

  .hero-counter strong {
    font-size: 16px;
  }

  .hero-counter span {
    font-size: 12px;
  }

  .hero-arrow {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

@media (max-width:375px){
      .hero-top {
        height: 70vh;
    }
}


/* Distinction */
.distinction-section {
  background: var(--color-dark);
  padding: 22px 0 90px;
}

.distinction-intro {
  background: #ddc8b7;
  padding: 81px 52px;
  display: flex;
  flex-direction: column;
  gap: 100px;

}

.distinction-intro h2 {
  font-size: clamp(42px, 2.7vw, 62px);
  margin-bottom: 64px;
}

.distinction-intro p {
  max-width: 380px;
  color: #4e4747;
  font-size: 18px;
  line-height: 1.7;
}

.distinction-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0px;
  position: relative;

}

.distinction-image__card {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 40px 0px;
  left: -20%;
}

html[dir="rtl"] .distinction-image__card {
  left: 20%;
}
  


.distinction-image__card img {

  height: 100%;
}



.distinction-image__brand {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  text-align: center;
}

.distinction-image__brand span {
  display: block;
  font-size: 20px;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.features-list {
  padding: 16px 0 16px 48px;
  display: grid;
  gap: 24px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  color: #fff;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  display: grid;
  place-items: center;
  color: #eaded1;
}

.feature-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.feature-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

/* Auctions */
.auctions-section {
  position: relative;
  background: #EBE6E6;
  padding: 86px 72px;
  overflow: hidden;
}

.auctions-section::before {
  content: "UP COMING AUCTIONS";
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 0;
  right: 0;

  width: 100%;
  font-weight: 800;
  font-size: clamp(70px, 8.6vw, 210px);
  line-height: 0.86;
  overflow: hidden;

  color: rgba(40, 14, 16, 0.05);
  pointer-events: none;
  white-space: nowrap;
}

.section-watermark {
  position: absolute;
  top: 24px;
  left: -18px;
  font-weight: 800;
  font-size: clamp(70px, 11vw, 210px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: rgba(40, 14, 16, 0.05);
  pointer-events: none;
}

.section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.section-head h2,
.stats-section h2 {
  font-size: clamp(38px, 3vw, 60px);
}

.btn-see-all {
  border: 1px solid rgba(40, 14, 16, 0.35);
  border-radius: var(--radius-pill);
  padding: 12px 50px;
  color: var(--color-dark);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.btn-see-all:hover {
  border: 1px solid rgba(40, 14, 16, 0.35);
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.auction-card,
.team-card {
  /* background: #fff; */
  border-radius: 10px;
  overflow: hidden;

  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auction-card__cover,
.team-card__cover {
  position: relative;
  height: 520px;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
}

.auction-card__cover--poster {
  background: #090909;
  color: var(--ss-white);
}

.auction-card__cover--black,
.team-card__cover--black {
  background: #030303;
  color: var(--ss-white);
}

.auction-card__cover--brand,
.auction-card__cover--brand2 {
  background:
    linear-gradient(rgba(40, 14, 16, 0.62), rgba(40, 14, 16, 0.78)),
    url("../imgs/bg-money.png") center / cover no-repeat;
  color: #c8a24a;
}

.bookmark-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--ss-white);
  color: var(--color-dark);
  display: grid;
  place-items: center;
  z-index: 3;
}

.poster-title,
.poster-subtitle {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
}

.poster-title {
  font-size: 30px;
}

.poster-subtitle {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.85;
}

.poster-grid {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: end;
}

.poster-grid img:nth-child(1) {
  width: 80px;
}

.poster-grid img:nth-child(2) {
  width: 156px;
  justify-self: end;
}

.poster-grid img:nth-child(3) {
  width: 120px;
  justify-self: end;
}

.poster-grid img:nth-child(4) {
  width: 140px;
}

.cover-coins {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
}



.cover-coins img:last-child {
  width: 100%;
}

.cover-brand {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

.cover-brand img {
  width: 90px;
}

.cover-brand span {
  display: block;
  font-size: 16px;
  margin-top: 6px;
  letter-spacing: 0.15em;
}

.auction-card__body,
.team-card__body {
  padding: 11px 16px 11px;
  border-radius: 8px;
  background-color: var(--ss-white);
}

.swiper-slide a {
  text-decoration: none;
  color: var(--ss-black);
}

.status {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.status--green {
  color: #7ebd7a;
}

.status--red {
  color: #ec7c7c;
}

.auction-card__body h3,
.team-card__body h3 {
  font-size: 19px;
  font-weight: 600;
  /* margin: 0 0 10px; */
}

.auction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #999;
  font-size: 14px;
}

.auction-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Stats */
.stats-section {
  background: #f6f4f3;
  /* padding: 64px 0 70px; */
}

.stats-panel {
  background: #EBD1BD;
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 34px 24px;
  margin: 16px 0;
  border-right: 1px solid rgba(40, 14, 16, 0.12);
  /* border-bottom: 1px solid rgba(40, 14, 16, 0.08); */
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-size: 44px;
  color: #11184c;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item span {
  display: block;
  font-size: 15px;
  color: #74695e;
}

@media (max-width:767px) {
  .stats-panel {
    flex-direction: column;
  }
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(180deg, #EBE6E6 50%, #0E1335 50%);
  padding: 77px;
}

.newsletter-box {
  background: var(--ss-white);
  border-radius: 20px;
  padding: 68px 24px 62px;
  box-shadow: var(--shadow-soft);
}

.newsletter-box h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-box p {
  max-width: 445px;
  margin: 16px auto 28px;
  color: #8e8e8e;
  font-size: 13px;
  line-height: 1.7;
}


.newsletter-form {
  max-width: 770px;
  display: flex;
  gap: 12px;
  position: relative;
}

.newsletter-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(40, 14, 16, 0.25);
  border-radius: var(--radius-pill);
  padding: 18px;
  min-height: 54px;

}

.newsletter-form input::placeholder {
  font-size: 14px;
  color: #999;
}

.newsletter-form input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}

.newsletter-form input::-moz-placeholder {
  font-size: 13px;
}

.newsletter-form input:-ms-input-placeholder {
  font-size: 13px;
}

.newsletter-input-wrap i {
  color: #aaa;
}

.newsletter-input-wrap input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
}

.newsletter-form .btn-brand {
  min-width: 140px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
}

html[dir="rtl"] .newsletter-form .btn-brand {
  right: auto;
  left: 9px;
}

@media (max-width:767px) {
  .newsletter-section {
    padding: 77px 14px;
  }

  .newsletter-form .btn-brand {
    position: static;
    transform: none;
  }

  .newsletter-input-wrap {
    padding: 12px 18px;
  }
}

/* Footer */
.site-footer {
  background: #0E1335;
  color: var(--ss-white);
  padding: 77px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.brand--footer {
  color: var(--ss-white);
  margin-bottom: 18px;
}

.brand--footer .brand__title,
.brand--footer .brand__sub {
  color: var(--ss-white);
}

.footer-copy {
  max-width: 430px;
  color: #8C8C8C;
  line-height: 1.7;
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-links a,
.footer-contact i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--ss-white);
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 3px;
}

.footer-contact strong {
  font-weight: 500;
}

.accreditations {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 16px;
  align-items: center;
}

.accreditations img {
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}

.accreditation {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
}

.footer-disclaimer {
  margin-top: 30px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1399.98px) {
  .hero-coin-wrap {
    left: 100px;
    width: min(48vw, 620px);
  }

  .hero-card-copy {
    right: 80px;
  }
}

@media (max-width: 1199.98px) {
  /* .hero-bg {
    height: 570px;
  } */



  .hero-showcase {
    height: 540px;
  }

  .hero-coin-wrap {
    left: 30px;
    top: 20px;
    width: min(58vw, 570px);
  }

  .hero-card-copy {
    right: 24px;
    top: 240px;
  }

  .distinction-image__brand {
    font-size: 30px;
  }

  .features-list {
    padding-left: 24px;
  }

  .auction-card__cover {
    height: 360px;
  }

  .distinction-image__card {
    left: -8%;
    transform: none;
    margin-top: 0;

  }
}

@media (min-width:992px) and (max-width:1080px) {
  .accreditations {
    gap: 9px;
  }

  .btn{
    font-size: 13px;
  }

  .main-nav .nav-link{
    font-size: 13px;
  }

  .navbar-nav{
    gap: 8px !important;
  }
}

@media (max-width: 1024px) {
  /* .hero-bg {
    height: 500px;
  } */

  .hero-top {
    padding-top: 135px;


  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-showcase {
    height: auto;
    padding: 48px 0 56px;
    background: linear-gradient(180deg,
        rgba(40, 14, 16, 0) 0%,
        rgba(40, 14, 16, 0) 14%,
        var(--color-dark) 14%,
        var(--color-dark) 100%);
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-coin-wrap,
  .hero-card-copy,
  .hero-meta--counter {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-coin-wrap {
    width: min(88vw, 540px);
  }

  .hero-card-copy {
    text-align: center;
  }

  .hero-meta--counter {
    order: 3;
    font-size: 18px;
  }

  .hero-meta--counter strong {
    font-size: 34px;
  }

  .hero-edge--left {
    left: -180px;
    top: 100px;
    width: 230px;
  }

  .hero-edge--right {
    right: -70px;
    top: 110px;
    width: 150px;
  }

  .distinction-section {
    padding-top: 0;
  }

  .distinction-intro {
    padding: 46px 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .distinction-intro h2 {
    margin-bottom: 30px;
  }

  .distinction-image {
    padding: 30px;
  }

  .features-list {
    padding: 60px 18px;
    height: fit-content !important;
    gap: 50px;
  }

  .section-watermark {
    top: 48px;
  }

  .stats-panel .stat-item:nth-child(2n) {
    border-right: none;
  }



  .distinction-image__card img {
    width: 100%;
    height: 100%;
  }

}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 40px 14px;
  }

  /* .container-main {
    padding-left: 24px;
    padding-right: 24px;
  } */

  .brand__coin {
    width: 40px;
    height: 40px;
  }

  .brand__title {
    font-size: 18px;
  }

  .brand__sub {
    font-size: 9px;
    margin-top: 2px;
  }

  /* .hero-bg {
    height: 360px;
    background:
      linear-gradient(rgba(247, 244, 243, 0.9), rgba(247, 244, 243, 0.9)),
      url("../imgs/bg-money.png") center / cover no-repeat;
  } */

  .hero-top {
    padding-top: 84px;
  }

  .hero-copy h1 {
    font-size: 28px;
    max-width: 340px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .hero-copy p {
    font-size: 13px;
    max-width: 320px;
    line-height: 1.4;
  }

  .hero-cta {
    margin-top: 18px;
    gap: 10px !important;
  }

  .hero-cta .btn {
    min-width: 145px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-showcase {
    padding-top: 22px;
    background: linear-gradient(180deg,
        rgba(40, 14, 16, 0) 0%,
        rgba(40, 14, 16, 0) 6%,
        var(--color-dark) 6%,
        var(--color-dark) 100%);
  }

  .hero-coin-wrap {
    width: min(100vw, 390px);
    margin-top: 18px;
  }

  .hero-edge--left {
    left: -120px;
    width: 150px;
    top: 80px;
  }

  .hero-edge--right {
    right: -56px;
    width: 105px;
    top: 88px;
  }

  .hero-card-copy h2 {
    font-size: 20px;
    /* max-width: 220px; */
    margin: 0 auto 4px;
  }

  .hero-card-copy p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero-details {
    font-size: 12px;
    padding: 9px 18px;
  }

  .hero-meta--counter {
    gap: 8px;
    font-size: 16px;
  }

  .hero-meta--counter strong {
    font-size: 24px;
  }

  .distinction-section {
    padding-bottom: 0px;
  }

  .distinction-intro {
    padding: 34px 24px;
  }

  .distinction-intro h2,
  .section-head h2,
  .stats-section h2 {
    font-size: 32px;
  }

  .distinction-intro p {
    font-size: 16px;
  }

  .distinction-image {
    padding: 18px 24px 26px;
  }



  .distinction-image__brand {
    font-size: 20px;
  }

  .distinction-image__brand span {
    font-size: 10px;
  }

  .features-list {
    gap: 50px;
  }

  .feature-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .feature-item h3 {
    font-size: 14px;
  }

  .feature-item p {
    font-size: 12px;
  }

  .auctions-section {
    padding: 54px 0;
  }

  .section-watermark {
    top: 34px;
    font-size: 58px;
  }

  /* .auction-card__cover {
    height: 292px;
  } */

  .poster-title {
    font-size: 22px;
  }

  .poster-subtitle {
    font-size: 14px;
  }

  .cover-brand {
    font-size: 26px;
  }

  .cover-brand img {
    width: 68px;
  }

  .auction-card__body h3 {
    font-size: 20px;
  }

  .auction-meta {
    font-size: 12px;
  }

  /* .stats-section {
    padding: 52px 0;
  } */

  .stat-item {
    padding: 22px 16px;
  }

  .stat-item strong {
    font-size: 26px;
  }

  .stat-item span {
    font-size: 12px;
  }

  .newsletter-box {
    padding: 42px 20px;
  }

  .newsletter-box h2 {
    font-size: 22px;
  }

  .newsletter-box p {
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn-brand {
    width: 100%;
  }

  /* .site-footer {
    padding: 42px 0 28px;
  } */

  .accreditations {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }

  .footer-disclaimer {
    border-radius: 14px;
    font-size: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width:576px) {
  .distinction-image__card {
    max-width: 340px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 300px;
  }

  .features-list {
    margin-top: 350px;
  }
}