/* =========================================================
   NEVERSHY LUXURY CSS PACK
   PrestaShop 8.2
   Lekki premium frontend
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {

  --ns-bg: #ffffff;
  --ns-bg-soft: #f8f4ef;

  --ns-text: #111111;
  --ns-text-light: #666666;

  --ns-border: #ece7e2;

  --ns-accent: #d7b8a3;
  --ns-accent-dark: #c9a28b;

  --ns-radius: 14px;

  --ns-shadow:
    0 10px 40px rgba(0,0,0,.05);

  --ns-transition:
    220ms ease;

  --ns-container:
    1440px;

  --ns-font-body:
    'Inter', sans-serif;

  --ns-font-display:
    'Cormorant Garamond', serif;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ns-font-body);
  color: var(--ns-text);
  background: var(--ns-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: var(--ns-transition);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(100% - 32px, var(--ns-container));
}


/* =========================================================
   HEADER
========================================================= */

#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ns-border);
  transition: var(--ns-transition);
}

.header-top {
  padding-block: 18px;
}

#header .logo {
  max-width: 180px;
}

.top-menu {
  display: flex;
  gap: 28px;
}

.top-menu a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ns-text);
  font-weight: 500;
}

.top-menu a:hover {
  opacity: .6;
}


/* =========================================================
   HEADER ICONS
========================================================= */

#_desktop_user_info,
#_desktop_cart,
#_desktop_searchbar {
  display: flex;
  align-items: center;
}

.header-nav .material-icons,
#search_widget .material-icons {
  font-size: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero-luxury {
  min-height: 84vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-luxury__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-luxury__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-luxury__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.22)
    );
  z-index: 2;
}

.hero-luxury__content {
  position: relative;
  z-index: 3;
  color: white;
  width: min(100% - 32px, 1440px);
  margin-inline: auto;
}

.hero-luxury__subtitle {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.hero-luxury h1 {
  font-family: var(--ns-font-display);
  font-size: clamp(54px, 8vw, 104px);
  line-height: .92;
  font-weight: 400;
  max-width: 720px;
  margin: 20px 0 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn,
.btn-primary {

  min-height: 54px;

  border-radius: 999px;

  padding-inline: 30px;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: .12em;

  font-weight: 600;

  transition: var(--ns-transition);

  border: 1px solid transparent;
}

.btn-primary {
  background: #111;
  border-color: #111;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.ns-categories {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding: 90px 0;
}

.ns-category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ns-radius);
}

.ns-category-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .7s ease;
}

.ns-category-card:hover img {
  transform: scale(1.04);
}

.ns-category-card span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: white;
  font-size: 34px;
  font-family: var(--ns-font-display);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products {
  margin-top: 30px;
}

.product-miniature {

  border: none !important;

  padding: 0 !important;

  background: transparent !important;
}

.product-miniature .thumbnail-container {

  border: none;

  background: transparent;

  box-shadow: none;

  transition: var(--ns-transition);
}

.product-miniature .thumbnail-container:hover {
  transform: translateY(-3px);
}

.product-miniature img {
  border-radius: 16px;
  overflow: hidden;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-title {
  margin-top: 18px;
}

.product-title a {

  color: var(--ns-text);

  font-size: 14px;

  font-weight: 500;

  line-height: 1.45;
}

.product-price-and-shipping {
  margin-top: 10px;
}

.price {
  font-size: 15px;
  font-weight: 600;
}

.regular-price {
  color: #999;
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-cover img {
  border-radius: 18px;
}

.product-information {

  padding-left: 40px;
}

h1.h1 {
  font-family: var(--ns-font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.product-description {
  color: var(--ns-text-light);
}

.product-actions .add-to-cart {
  width: 100%;
}


/* =========================================================
   INPUTS
========================================================= */

input,
select,
textarea {

  border-radius: 12px !important;

  border: 1px solid var(--ns-border) !important;

  min-height: 50px;

  box-shadow: none !important;
}

input:focus,
select:focus,
textarea:focus {

  border-color: var(--ns-accent) !important;
}


/* =========================================================
   FOOTER
========================================================= */

#footer {

  margin-top: 100px;

  border-top: 1px solid var(--ns-border);

  background: #fff;

  padding: 70px 0 30px;
}

#footer .links ul {
  padding-left: 0;
}

#footer .links li {
  margin-bottom: 12px;
}

#footer a {
  color: var(--ns-text-light);
}

#footer a:hover {
  color: var(--ns-text);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.block_newsletter {
  background: var(--ns-bg-soft);
  border-radius: 24px;
  padding: 48px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
  background: transparent;
  padding-inline: 0;
}


/* =========================================================
   MOBILE MENU
========================================================= */

#mobile_top_menu_wrapper {
  background: white;
}

#mobile_top_menu_wrapper .top-menu a {
  font-size: 15px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

  .hero-luxury {
    min-height: 70vh;
  }

  .hero-luxury h1 {
    font-size: 58px;
  }

  .ns-categories {
    grid-template-columns: 1fr;
  }

  .product-information {
    padding-left: 0;
    margin-top: 30px;
  }

  h1.h1 {
    font-size: 42px;
  }

  #header .logo {
    max-width: 130px;
  }
}


/* =========================================================
   MICRO ANIMATIONS
========================================================= */

.product-miniature,
.btn,
a,
img {
  will-change: transform;
}


/* =========================================================
   PERFORMANCE
========================================================= */

img {
  content-visibility: auto;
}

.product-miniature img {
  transform: translateZ(0);
}
/* =========================================
   NEVERSHY PRODUCT GRID
========================================= */

.products {
  margin-top: 40px;
}

.products .product {
  width: 100%;
}

.product-miniature {
  margin-bottom: 48px !important;
}

.ns-product-card {
  position: relative;
}

.ns-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f3ef;
}

.ns-product-image img {

  width: 100%;

  aspect-ratio: 4/5;

  object-fit: cover;

  transition:
    opacity .45s ease,
    transform .7s ease;
}

.ns-product-image-hover {

  position: absolute;

  inset: 0;

  opacity: 0;
}

.ns-product-card:hover .ns-product-image-hover {
  opacity: 1;
}

.ns-product-card:hover .ns-product-image img {
  transform: scale(1.02);
}

.ns-product-info {
  padding-top: 18px;
  text-align: center;
}

.ns-product-title {
  margin-bottom: 10px;
}

.ns-product-title a {

  color: #111;

  font-size: 15px;

  line-height: 1.45;

  text-decoration: none;

  font-weight: 500;
}

.ns-product-price {

  font-size: 15px;

  font-weight: 600;

  letter-spacing: .04em;
}

.product-price-and-shipping,
.product-description,
.highlighted-informations,
.product-flags,
.variant-links,
.comments_note {
  display: none !important;
}


/* =========================================
   DESKTOP GRID
========================================= */

@media (min-width: 992px) {

  .products.row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .products.row > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .products.row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .products.row > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .ns-product-title a {
    font-size: 14px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

  .products.row {
    gap: 14px;
  }

  .product-miniature {
    margin-bottom: 24px !important;
  }

  .ns-product-info {
    padding-top: 12px;
  }

  .ns-product-title a {
    font-size: 13px;
  }

  .ns-product-price {
    font-size: 14px;
  }
}
/* =========================================
   NEVERSHY HOMEPAGE
========================================= */

.ns-homepage {
  overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.ns-hero {

  position: relative;

  min-height: 92vh;

  display: flex;

  align-items: center;
}

.ns-hero-image,
.ns-hero-image img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;
}

.ns-hero-image img {
  object-fit: cover;
}

.ns-hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.28)
    );
}

.ns-hero-content {

  position: relative;

  z-index: 2;

  width: min(100% - 32px, 1440px);

  margin-inline: auto;

  color: white;
}

.ns-hero-subtitle {

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: .24em;
}

.ns-hero h1 {

  font-family: var(--ns-font-display);

  font-size: clamp(58px, 9vw, 120px);

  line-height: .92;

  font-weight: 400;

  max-width: 760px;

  margin:
    22px 0
    38px;
}


/* =========================================
   CATEGORIES
========================================= */

.ns-home-categories {

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 28px;

  padding:
    90px 0;
}

.ns-home-category {

  position: relative;

  overflow: hidden;

  border-radius: 22px;
}

.ns-home-category img {

  width: 100%;

  aspect-ratio: 4/5;

  object-fit: cover;

  transition: transform .7s ease;
}

.ns-home-category:hover img {
  transform: scale(1.04);
}

.ns-home-category-content {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 32px;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,.32)
    );
}

.ns-home-category-content span {

  color: white;

  font-size: 40px;

  font-family: var(--ns-font-display);
}


/* =========================================
   SECTION
========================================= */

.ns-section {
  padding-bottom: 90px;
}

.ns-section-header {

  text-align: center;

  margin-bottom: 60px;
}

.ns-section-header span {

  text-transform: uppercase;

  letter-spacing: .22em;

  font-size: 12px;
}

.ns-section-header h2 {

  font-family: var(--ns-font-display);

  font-size: 68px;

  font-weight: 400;

  margin-top: 14px;
}


/* =========================================
   NEWSLETTER
========================================= */

.ns-newsletter {
  padding-bottom: 120px;
}

.ns-newsletter-box {

  background: #f7f3ef;

  border-radius: 34px;

  padding:
    80px;

  text-align: center;
}

.ns-newsletter-box span {

  text-transform: uppercase;

  letter-spacing: .18em;

  font-size: 12px;
}

.ns-newsletter-box h2 {

  font-family: var(--ns-font-display);

  font-size: 72px;

  line-height: .95;

  font-weight: 400;

  margin:
    20px 0
    34px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .ns-hero {
    min-height: 72vh;
  }

  .ns-hero h1 {
    font-size: 64px;
  }

  .ns-home-categories {
    grid-template-columns: 1fr;
  }

  .ns-home-category-content span {
    font-size: 34px;
  }

  .ns-section-header h2 {
    font-size: 48px;
  }

  .ns-newsletter-box {
    padding: 42px 24px;
  }

  .ns-newsletter-box h2 {
    font-size: 44px;
  }
}