/**
 * Maison Francis Kurkdjian – inspired luxury perfume theme
 * Smell Kartell
 */
:root {
  --mfk-black: #111111;
  --mfk-white: #ffffff;
  --mfk-cream: #faf9f7;
  --mfk-gray: #6b6b72;
  --mfk-gray-light: #e5e5e5;
  --mfk-accent: #1a1a1a;
  --mfk-font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --mfk-font-body: "Helvetica Neue", Arial, sans-serif;
  --mfk-letter-wide: 0.16em;
  --mfk-transition: 0.2s ease;
}

body {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
  background-color: var(--mfk-white);
}

/* ----- Header MFK style ----- */
.mfk-header {
  background: var(--mfk-white);
  border-bottom: 1px solid var(--mfk-gray-light);
  font-size: 12px;
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
}

.mfk-header a {
  color: var(--mfk-black);
  text-decoration: none;
  transition: opacity var(--mfk-transition);
}

.mfk-header a:hover {
  opacity: 0.7;
}

/* Logo: büyük, sol köşede */
.mfk-header .mfk-logo {
  max-height: 88px;
  width: auto;
  display: block;
}

.mfk-header .mfk-logo img {
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Sağ üst ikonlar: ince çizgi, gri (fotoğraftaki gibi) */
.mfk-header .mfk-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mfk-gray);
  padding: 6px;
  transition: color var(--mfk-transition);
}

.mfk-header .mfk-header-icon:hover {
  color: var(--mfk-black);
}

.mfk-header .mfk-header-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.mfk-nav-bar {
  border-top: none;
  background: transparent;
}

/* Tek satır header içinde nav ortada */
#header .mfk-nav-bar .mfk-nav-link {
  margin: 0 14px;
}

.mfk-nav-link {
  display: inline-block;
  padding: 14px 0;
  margin: 0 20px 0 0;
  color: var(--mfk-black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
  position: relative;
}

.mfk-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--mfk-black);
  transition: width var(--mfk-transition);
}

.mfk-nav-link:hover::after,
.mfk-nav-link.active::after {
  width: 100%;
}

/* ----- Product cards MFK style ----- */
.mfk-product-card {
  text-align: center;
  margin-bottom: 2rem;
}

/* Eşit hizalama: aynı satırdaki kartlar aynı yükseklikte, buton altta hizalı */
.mfk-product-card .mfk-product-collection,
.mfk-product-card .mfk-product-title,
.mfk-product-card .mfk-product-price,
.mfk-product-card .mfk-product-notes {
  flex-shrink: 0;
}
.mfk-product-card .mfk-product-card-actions {
  flex-shrink: 0;
}

.mfk-product-card .mfk-product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.mfk-product-card .mfk-product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mfk-product-card:hover .mfk-product-image img {
  transform: scale(1.02);
}

.mfk-product-card .mfk-product-collection {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mfk-gray);
  margin-bottom: 4px;
}

.mfk-product-card .mfk-product-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.mfk-product-card .mfk-product-title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-product-card .mfk-product-title a:hover {
  text-decoration: underline;
}

.mfk-product-card .mfk-product-type {
  font-size: 12px;
  color: var(--mfk-gray);
  margin-bottom: 6px;
}

.mfk-product-card .mfk-product-price {
  font-size: 13px;
  margin-bottom: 8px;
}

.mfk-product-card .mfk-product-price .from {
  color: var(--mfk-gray);
}

.mfk-product-card .mfk-product-notes {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mfk-gray);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.mfk-product-card .mfk-btn-atc {
  display: inline-block;
  padding: 12px 24px;
  background: #55565B;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mfk-product-card .mfk-btn-atc:hover {
  background: #45464b;
  color: #ffffff;
}

.mfk-product-card .mfk-btn-atc.mfk-btn-disabled {
  background: #9a9b9f;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.85;
}

/* ----- Section titles ----- */
.mfk-section-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.mfk-section-subtitle {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.mfk-section-subtitle a {
  color: var(--mfk-black);
  text-decoration: underline;
}

/* ----- Footer MFK style ----- */
.mfk-footer {
  background: var(--mfk-cream);
  padding: 3rem 0 2rem;
  font-size: 13px;
  color: var(--mfk-black);
}

.mfk-footer a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-footer a:hover {
  text-decoration: underline;
}

.mfk-footer-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.mfk-footer-newsletter input[type="email"] {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid var(--mfk-gray-light);
  background: var(--mfk-white);
  font-size: 14px;
}

.mfk-footer-newsletter button,
.mfk-footer-newsletter input[type="submit"] {
  margin-top: 10px;
  padding: 12px 24px;
  background: var(--mfk-black);
  color: var(--mfk-white);
  border: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.mfk-footer-bottom {
  border-top: 1px solid var(--mfk-gray-light);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 12px;
  color: var(--mfk-gray);
}

/* ----- Search overlay ----- */
.mfk-search-overlay {
  position: fixed;
  inset: 0;
  background: var(--mfk-white);
  z-index: 9999;
  display: none;
  padding: 2rem;
}

.mfk-search-overlay.is-open {
  display: block;
}

.mfk-search-overlay input {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  display: block;
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid var(--mfk-black);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ----- Search sayfası: arama çubuğu + Unsere Vorschläge + 3 kategori ----- */
.mfk-search-page {
  background: var(--mfk-white);
  padding: 2rem 0 3rem;
}

.mfk-search-page__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.mfk-search-page__input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 600px;
}

.mfk-search-page__input {
  width: 100%;
  padding: 14px 36px 14px 0;
  border: none;
  border-bottom: 2px solid var(--mfk-black);
  background: transparent;
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  color: var(--mfk-black);
  letter-spacing: 0.02em;
}

.mfk-search-page__input::placeholder {
  color: var(--mfk-gray);
}

.mfk-search-page__input:focus {
  outline: none;
  border-bottom-color: var(--mfk-black);
}

.mfk-search-page__clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--mfk-gray);
  text-decoration: none;
  transition: color var(--mfk-transition);
}

.mfk-search-page__clear:hover {
  color: var(--mfk-black);
}

.mfk-search-page__submit {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px;
  padding: 12px 20px;
}

.mfk-search-page__suggestions-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--mfk-black);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ----- Hero / Banner ----- */
.mfk-hero {
  background: var(--mfk-cream);
  padding: 4rem 0;
  text-align: center;
}

.mfk-hero-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.mfk-hero-subtitle {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mfk-hero-subtitle a {
  color: var(--mfk-black);
  text-decoration: underline;
}

/* ----- Product single (MFK-style, franciskurkdjian.com tarzı) ----- */
.mfk-product-single {
  font-family: var(--mfk-font-body);
}

.mfk-product-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mfk-product-breadcrumb a {
  color: var(--mfk-gray);
  text-decoration: none;
}

.mfk-product-breadcrumb a:hover {
  color: var(--mfk-black);
  text-decoration: underline;
}

.mfk-product-breadcrumb__sep {
  color: var(--mfk-gray);
  margin: 0 0.35rem;
}

.mfk-product-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mfk-gray);
  margin-bottom: 0.5rem;
}

.mfk-product-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--mfk-black);
}

.mfk-product-single .mfk-product-title a {
  color: inherit;
  text-decoration: none;
}

.mfk-product-single .mfk-product-title a:hover {
  text-decoration: underline;
}

.mfk-product-price-block {
  margin-bottom: 1rem;
}

.mfk-product-single .mfk-product-price {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--mfk-black);
}

.mfk-product-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mfk-gray);
  margin-bottom: 1.5rem;
}

.mfk-product-variants__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mfk-gray);
}

.mfk-product-variant-btn span {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: border-color var(--mfk-transition), background var(--mfk-transition);
}

.mfk-product-variant-btn span:hover,
.mfk-product-variant-btn span.active {
  border-color: var(--mfk-black) !important;
  background: var(--mfk-black);
  color: var(--mfk-white);
}

.mfk-product-qty .mfk-qty-input {
  font-size: 14px;
  -moz-appearance: textfield;
}

.mfk-product-qty .mfk-qty-input::-webkit-outer-spin-button,
.mfk-product-qty .mfk-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mfk-qty-btn {
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--mfk-black);
}

/* Sepete ekle butonu: koyu gri (#55565B), beyaz yazı, yuvarlatılmış köşe */
.mfk-product-atc,
.mfk-btn-atc.mfk-product-atc {
  background-color: #55565B;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.mfk-product-atc:hover:not(:disabled),
.mfk-btn-atc.mfk-product-atc:hover:not(:disabled) {
  background-color: #45464b;
  color: #ffffff;
}

.mfk-product-atc:disabled,
.mfk-btn-atc.mfk-product-atc:disabled {
  background-color: #9a9b9f;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.85;
}

.mfk-product-description__title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mfk-gray);
}

.mfk-product-description__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mfk-black);
}

.mfk-product-description__body p {
  margin-bottom: 1rem;
}

.mfk-product-related .mfk-product-card {
  margin-bottom: 0;
}

/* ----- Unsere Auswahl / EXKLUSIVE AUSWAHL (fotoğraftaki gibi) ----- */
.mfk-auswahl {
  background: var(--mfk-white);
}

.mfk-auswahl__title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  text-align: center;
  color: var(--mfk-black);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.mfk-auswahl__carousel {
  padding: 0 48px;
}

@media (max-width: 767px) {
  .mfk-auswahl__carousel {
    padding: 0 36px;
  }
}

.mfk-auswahl__nav {
  width: 44px;
  height: 44px;
  color: var(--mfk-gray);
  cursor: pointer;
  transition: color var(--mfk-transition);
  z-index: 2;
}

.mfk-auswahl__nav:hover {
  color: var(--mfk-black);
}

.mfk-auswahl__nav--prev {
  left: 0;
  transform: translateY(-50%);
}

.mfk-auswahl__nav--next {
  right: 0;
  transform: translateY(-50%);
}

.mfk-auswahl-card {
  text-align: center;
  padding-bottom: 0.5rem;
}

.mfk-auswahl-card__img-link {
  display: block;
  text-decoration: none;
}

.mfk-auswahl-card__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
}

.mfk-auswahl-card__img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.mfk-auswahl-card__badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 1;
}

.mfk-auswahl-card__body {
  padding: 0 0.5rem;
}

.mfk-auswahl-card__name {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.mfk-auswahl-card__name a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-auswahl-card__name a:hover {
  text-decoration: underline;
}

.mfk-auswahl-card__type {
  font-size: 13px;
  color: var(--mfk-gray);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.mfk-auswahl-card__price {
  font-size: 12px;
  color: var(--mfk-gray);
  margin-bottom: 0;
}

/* ----- 3 sütun kategori blokları (Parfum Damen / Herren / Unisex tarzı) ----- */
.mfk-category-blocks {
  background: var(--mfk-white);
  padding: 3rem 0 4rem;
}

.mfk-category-blocks__row {
  display: flex;
  flex-wrap: wrap;
}

.mfk-category-block {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mfk-category-block__img-link {
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.mfk-category-block__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--mfk-cream);
}

/* Mobil: 3’ü yan yana sığdır */
@media (max-width: 767px) {
  .mfk-category-blocks {
    padding: 1.5rem 0 2rem;
  }
  .mfk-category-blocks .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .mfk-category-block__img-link {
    margin-bottom: 0.5rem;
  }
  .mfk-category-block__img-wrap {
    aspect-ratio: 3/4;
  }
  .mfk-category-block__title {
    font-size: 0.75rem;
    margin: 0 0 0.25rem;
    line-height: 1.2;
  }
  .mfk-category-block__desc {
    display: none;
  }
  .mfk-category-block__link {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
}

.mfk-category-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mfk-category-block__img--placeholder {
  background: var(--mfk-gray-light);
  min-height: 280px;
}

.mfk-category-block__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mfk-category-block__title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.mfk-category-block__title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-category-block__title a:hover {
  text-decoration: underline;
}

.mfk-category-block__desc {
  font-family: var(--mfk-font-heading);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mfk-black);
  margin-bottom: 1.25rem;
  flex: 1;
}

.mfk-category-block__link {
  font-family: var(--mfk-font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mfk-black);
  text-decoration: underline;
  display: inline-block;
  transition: opacity var(--mfk-transition);
}

.mfk-category-block__link:hover {
  color: var(--mfk-black);
  opacity: 0.7;
}

/* ----- Shop / Kategori sayfası ürün kartları – MFK yazı stili ----- */
.shop-main .product-card {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
}

/* Şişe görseli tam görünsün; kesilmesin (contain + arka plan) */
.shop-main .product-card .pc__img-wrapper {
  background: var(--mfk-cream);
}
.shop-main .product-card .pc__img {
  object-fit: contain;
}

.shop-main .product-card .pc__category {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mfk-gray);
  margin-bottom: 4px;
}

.shop-main .product-card .pc__title {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.shop-main .product-card .pc__title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.shop-main .product-card .pc__title a:hover {
  text-decoration: underline;
}

.shop-main .product-card .product-card__price {
  font-family: var(--mfk-font-body);
  font-size: 13px;
  color: var(--mfk-black);
  margin-bottom: 8px;
}

.shop-main .product-card .product-card__price .money {
  color: inherit;
}

.shop-main .product-card .pc__atc {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #ffffff !important;
  border-radius: 6px;
  border: none !important;
}

.shop-main .product-card .pc__atc:hover:not(.hp-atc-disabled) {
  background: #45464b !important;
  color: #ffffff !important;
}

.shop-main .product-card .pc__atc.hp-atc-disabled {
  background: #9a9b9f !important;
  color: #ffffff !important;
}

/* ----- Sepet, checkout, cart drawer – MFK yazı stili ----- */
.shop-checkout,
.shopping-cart,
.cart-drawer {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
}

.shop-checkout .page-title,
.shop-checkout h2.page-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mfk-black);
}

.shop-checkout .checkout-steps__item-title span,
.shop-checkout .checkout-steps__item-number {
  font-family: var(--mfk-font-body);
  letter-spacing: var(--mfk-letter-wide);
  color: var(--mfk-black);
}

.shop-checkout .checkout-steps__item-title em {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-style: normal;
}

.shop-checkout .cart-table th,
.shop-checkout .shopping-cart__product-item__detail h4,
.shop-checkout .shopping-cart__product-price,
.shop-checkout .cart-drawer-item__title {
  font-family: var(--mfk-font-heading);
  font-weight: 400;
  color: var(--mfk-black);
}

.shop-checkout .shopping-cart__product-item__detail h4 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.shop-checkout .cart-table,
.shop-checkout .shopping-cart__product-item__options,
.shop-checkout .cart-drawer-item__option {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-size: 13px;
}

.cart-drawer .aside-header h3,
.cart-drawer .cart-drawer-item__title {
  font-family: var(--mfk-font-body);
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mfk-black);
}

.cart-drawer .cart-drawer-item__title {
  font-family: var(--mfk-font-heading);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.cart-drawer .cart-drawer-item__option,
.cart-drawer .cart-drawer-item__price {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-size: 13px;
}

.shop-checkout .btn-primary,
.shop-checkout .btn-checkout,
.shopping-cart .btn-primary,
.shopping-cart .btn-checkout {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px;
}

.shop-checkout .btn-primary:hover,
.shop-checkout .btn-checkout:hover,
.shopping-cart .btn-primary:hover,
.shopping-cart .btn-checkout:hover {
  background: #45464b !important;
  color: #ffffff !important;
}
