html {
  scroll-behavior: smooth;
}

#preloader {
  font-family: "Cormorant Garamond", serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #43281c;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s ease-in-out;
}

.preloader-content {
  text-align: center;
}

.kokoro-transition {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #d1768f;
  -webkit-animation: focus-in-expand-fwd 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: focus-in-expand-fwd 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

#site-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

#site-content.fade-in {
  opacity: 1;
  visibility: visible;
}

.navbar {
  font-family: "Cormorant Garamond", serif;
}

.navbar-brand {
  font-size: 1.75rem;
  letter-spacing: 3px;
  max-width: 50%;
}

#logo {
  height: auto;
  max-width: 20%;
}

#display-name {
  font-size: 1rem;
}

.mask-custom {
  backdrop-filter: blur(5px);
  background-color: rgba(67, 40, 28, 0.6);
}

.navbar-brand {
  font-size: 1.75rem;
  letter-spacing: 3px;
}

.navbar-brand,
.nav-link,
.navbar-toggler {
  color: #d1768f;
}

.fa-hornbill {
  display: inline-block;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.fa-hornbill:hover {
  transform: rotate(20deg);
}

.fa-hornbill.is-active {
  transform: rotate(180deg);
}

.fa-hornbill.is-active:hover {
  transform: rotate(200deg);
}

body {
  background-color: #fbedc0;
  font-family: Inter, sans-serif;
}

#shop-hero,
#filters {
  background-image: url(media/bgImage.png);
  background-position: 50% 15%;
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#filters {
  background-image: none;
  background-color: #fbedc0;
  height: 10vh;
}

.pills {
  flex-wrap: wrap;
}

.floating-overlay {
  color: #fbf2c0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  font-family: "Cormorant Garamond", serif;
}

.floating-overlay div {
  background-color: #43281c;
}

p.small {
  opacity: 50%;
}

.badge {
  background-color: #ffffff;
  color: #43281c;
  border: none;
  border-radius: 999px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  font-weight: 600;
}

.badge:hover {
  transform: translateY(-2px);
}

.pill-x {
  opacity: 0;
  width: 0;

  overflow: hidden;

  transition:
    opacity 0.25s ease,
    width 0.25s ease,
    margin-left 0.25s ease;
}

.badge.active {
  background-color: #43281c;
  color: #d1768f;
}

.badge.active .pill-x {
  opacity: 1;
  width: 12px;
  margin-left: 0.4rem;
}

.card {
  background-color: #fbf2c0;
  color: #43281c;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 6);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-column {
  min-height: 100%;
}

.sold {
  background-color: #43281c;
  color: #fbf2c0;
  opacity: 0.7;
}

.btn:disabled {
  background-color: #7d7c7c;
}

.card:hover {
  transform: translateY(-4px);
}

.card.expand {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: min(90vw, 500px);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9999;
}

.card-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.card-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.card-img-top {
  aspect-ratio: 4/5;
  height: 240px;
  width: 100%;
  object-fit: contain;
  transform: scale(0.9);
}

.btn-add-cart {
  background-color: #43281c;
  color: #fbf2c0;
  border-radius: 999px;
  border: none;
}

.site-footer {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  color: #43281c;
  font-family: "Cormorant Garamond", serif;
}

.site-footer p {
  margin-bottom: 0.75rem;
}

.footer-copyright,
.footer-credit {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-disciplines {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.footer-dot {
  font-size: 0.35rem;
  margin: 0 0.6rem;
  vertical-align: middle;
  color: #ddb1bf;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-6-14 17:14:20
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand-fwd
 * ----------------------------------------
 */
@-webkit-keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    font-size: 1.5rem;
  }
}
