:root {
  /* ----- Font Family ----- */
  --main-font-family: "Noto Serif JP", serif;
  /* ----- font size ----- */
  font-size: 10px; /* -> 62.5% */
  --main-font-size: 1.7rem;
  /* ----- Font Color ----- */
  --main-txt-color: #000;
  /* ----- White Color Theme Palette ----- */
  --white-primary: #fffefa;
  --white-pure: #ffffff;
  /* ----- Gray Palette ----- */
  --dark: rgba(0, 0, 0, 0.85);
  --gray-primary: #232f3e;
  --gray-secondary: #b4b9b9;
  --gray-accent: #35363a;
  --gray-dark: #7f837f;
  --gray-medium: #999999;
  --gray-light: lightgray;
  --gray-lightest: #eaeaea;
  --gray-border: #d6d9db;
  --gray-bg: #f7f7f7;
  /* ----- height ----- */
  --main-nav-height: 8.5rem;
  --main-footer-height: 4.25rem;
  --ios-height: "";
  --main-image-container-height: "";
  --main-image-container-width: "";
}

* {
  text-decoration: none;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--main-nav-height));
}

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

/***********************************************/
/*            Page Loading Animation           */
/***********************************************/
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                   Body Structures                 */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
body {
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  height: auto;
  min-height: -webkit-fill-available;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--white-pure);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body.active {
  overflow: clip;
  touch-action: none;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Top Navigation                 */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.top-navigation {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: var(--white-pure);
  background-color: #000;
  z-index: 100;
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  height: var(--main-nav-height);
  border-bottom: 0.5px solid #636363;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 0 2.5rem;
  transition: all 0.3s ease-in-out;
}

.web-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.company-logo {
  width: 140px;
  filter: brightness(100%);
  transition: all 0.3s ease-in-out;
}

.company-logo:hover {
  filter: brightness(65%);
}

/*****************************************************/
/*          Nav Menu Wrapper & Dropdown Items        */
/*****************************************************/
.nav-menu-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  color: #000;
}

.nav-menu-wrapper .company {
  color: white;
}

.nav-menu-wrapper .dropdown-menu-wrapper a {
  color: #000;
}

.dropdown-item {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/*****************************************************/
/*               none dropdown links                 */
/*****************************************************/
/*****************************************************/
/*                dropdown-item-button               */
/*****************************************************/
.dropdown-item-button {
  font-family: var(--main-font-family);
  font-size: inherit;
  color: white;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

/* Rotate icon when button is active */
.dropdown-item-button.active .la-angle-down {
  transform: rotateX(180deg);
}

.dropdown-item-button .la-angle-down {
  transition: transform 0.3s ease;
}

/*****************************************************/
/*               dropdown-menu-wrapper               */
/*****************************************************/
.dropdown-menu-wrapper {
  position: absolute;
  top: var(--main-nav-height);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  width: 100%;
  min-height: 45vh;
  opacity: 0;
  visibility: hidden;
  background-color: var(--white-pure);
  transition: all 0.3s ease-in-out;
  transform: translateY(5%);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
}

.dropdown-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*****************************************************/
/*            dropdown-menu-section-wrapper          */
/*****************************************************/
.dropdown-menu-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
  width: 100%;
}

.dropdown-menu-title-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sub-tree-title {
  color: #6f6f6f;
  font-size: 80%;
}

/*****************************************************/
/*           dropdown-menu-section main-title        */
/*****************************************************/
.dropdown-menu-section.main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
}

.dropdown-menu-section.main-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/*****************************************************/
/*           dropdown-menu-section item-lists        */
/*****************************************************/
.dropdown-menu-section.item-lists {
  font-size: 1.35rem;
}

/*****************************************************/
/*             dropdown-menu-section right           */
/*****************************************************/
.dropdown-menu-section-title {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: white;
  margin-bottom: 1.5rem;
}

.dropdown-menu-section h3 {
  margin: 0;
  font-size: inherit;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.dropdown-menu-section ul li a p {
  color: #969696;
  font-size: 80%;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu-section ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul li a:hover p {
  color: #000;
}

/*****************************************************/
/*           Top Navigation Hamburger Menu           */
/*****************************************************/
.hamburger.main {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  z-index: 999;
}

.bar {
  display: block;
  width: 35px;
  height: 2.5px;
  margin: 8.5px auto;
  transition: all 0.2s ease-in-out;
  background-color: #000;
  background-color: white;
}

.hamburger.main.active .bar {
  background-color: #fff;
}

.hamburger.main.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.main.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(44deg);
}

.hamburger.main.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-44deg);
}

.hamburger.hide .bar {
  display: none;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                  Mobile Navigation                */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
#mobile-nav {
  display: none;
}

.mobile-nav-contents {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  font-size: var(--mobile-nav-font-size);
  height: var(--ios-height);
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scroll */
  background-color: #000;
  width: 100%;
  transform: translate(100%);
  transition: all 0.2s ease-in-out;
  overscroll-behavior: contain;
}

.mobile-nav-contents.open {
  visibility: visible;
  transform: translate(0);
}

/*****************************************************/
/*               mobile-nav-menu-wrapper             */
/*****************************************************/
.mobile-nav-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  height: 100%;
  padding-top: calc(var(--main-nav-height) * 1.5);
  margin: 0 2rem;
}

.mobile-dropdown-menu-wrapper {
  visibility: hidden;
  position: absolute; /* Position relative to the .mobile-nav-wrapper */
  top: 0;
  left: 0;
  font-size: var(--mobile-nav-font-size);
  overflow-y: auto;
  background-color: var(--white-pure);
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  transform: translate(100%);
  transition: all 0.2s ease-in-out;
  overscroll-behavior: contain;
}

.mobile-dropdown-menu-wrapper.open {
  visibility: visible;
  transform: translate(0);
}

.mobile-dropdown-item-button {
  font-family: var(--main-font-family);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  padding: 0;
  color: var(--white-pure);
}

.mobile-nav-menu-wrapper a {
  color: #000;
}

.mobile-nav-menu-wrapper .company {
  color: var(--white-pure);
  font-size: 3rem;
}

.mobile-dropdown-menu-button {
  font-family: var(--main-font-family);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 0;
  color: #000;
  font-weight: 900;
}

.mobile-dropdown-menu-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 5rem 0;
}

.mobile-dropdown-menu-image-wrapper {
  display: flex;
  width: 100%;
}

.mobile-dropdown-menu-image-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
}

.mobile-dropdown-menu-image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.mobile-dropdown-menu-section-title {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: white;
  margin-bottom: 1.5rem;
}

.mobile-dropdown-menu-section h2 {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: var(--white-pure);
}

.mobile-dropdown-menu-section h3 {
  margin: 0;
  font-size: inherit;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu-section ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
}

.mobile-dropdown-menu-section ul li a p {
  color: #969696;
  font-size: 80%;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu-section ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.mobile-dropdown-menu-section ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Body Content                   */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Body Content                   */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.main-contents-body {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - (var(--main-nav-height) + var(--main-footer-height)));
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                        Footer                     */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background-color: #000;
  color: white;
  height: var(--main-footer-height);
  margin: auto;
}

/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/***************************     Smaller Screens      ***************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/*******************************************************/
/*                  Screen Size 930 px                 */
/*******************************************************/
@media (max-width: 930px) {
  .main-nav {
    padding: 0 15px;
  }
  .nav-menu-wrapper {
    display: none;
  }
  .hamburger.main {
    display: block;
  }
  #mobile-nav {
    display: block;
  }
}
.originals .main-contents-body {
  background: url(../images/pdp-bg01-min.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.signatures .main-contents-body {
  background: url(../images/pdp-bg01-min.png) no-repeat;
  background-size: cover;
  background-position: center;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                     Section Main                  */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
section.main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 100%;
  height: 100%;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                section-contents-wrapper           */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.section-contents-wrapper {
  width: 95%;
  margin: auto;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                   Main PDP Wrapper                */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.pdp-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.pdp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                Gallery and Info Section           */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/* Gallery Section */
.pdp-gallery-wrapper,
.pdp-info-wrapper {
  flex: 1 500px;
}

/*****************************************************/
/*                   Gallery Section                 */
/*****************************************************/
.pdp-gallery-wrapper {
  width: 100%;
  max-width: 700px;
  max-height: auto;
  margin: 0 auto;
}

.pdp-gallery-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch; /* Ensures children have equal height */
}

/* Main Image: smaller by limiting max-width and keeping 3:4 ratio */
.main-image-container {
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(105%) saturate(110%);
}

.signatures .main-image-container img {
  filter: brightness(105%) saturate(110%) contrast(110%);
}

/* Define a keyframes animation for fade-in with a slight zoom-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* This class triggers the fadeIn animation */
.main-image-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.thumbnails {
  width: 150px;
  height: var(--main-image-container-height);
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 7px 0 0;
  padding: 0 6px 0 0;
}
.thumbnails::-webkit-scrollbar {
  width: 5px;
}
.thumbnails::-webkit-scrollbar-thumb {
  background-color: rgba(70, 70, 70, 0.5);
}

.thumbnail {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1.5px solid #eee;
  cursor: pointer;
  transition: border-color 1s ease;
  filter: brightness(105%) saturate(110%);
}

.signatures .thumbnail {
  filter: brightness(105%) saturate(110%) contrast(110%);
}

.thumbnails img.active-thumbnail {
  border-color: #000;
}

/*****************************************************/
/*                    Info Section                   */
/*****************************************************/
.pdp-info-wrapper {
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.pdp-info-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pdp-info-container h1 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  color: #fff;
  background-color: #000;
  padding: 10px;
  text-align: center;
}

.size-section p {
  margin-bottom: 5px;
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-btn {
  padding: 5px 10px;
  border: 1px solid #000;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.size-btn:hover {
  background: #000;
  color: #fff;
}

.size-btn.active {
  background: #000;
  color: #fff;
}

.price-section button {
  padding: 10px 20px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.price-section button:hover {
  background-color: #555;
}

/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/***************************     Smaller Screens      ***************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
@media (max-width: 1500px) {
  .pdp-gallery-wrapper {
    max-width: 620px;
  }
}
@media (max-width: 930px) {
  .pdp-container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  section.main {
    padding: 0;
  }
  .section-contents-wrapper {
    width: 100%;
  }
  .pdp-wrapper {
    padding: 10px;
  }
  .pdp-info-wrapper {
    padding: 10px;
  }
  .pdp-gallery-container {
    display: flex;
    flex-direction: column;
  }
  .thumbnails {
    width: var(--main-image-container-width);
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    margin: 7px 0 0 0;
    padding: 0 0 5px 0;
  }
  .thumbnails::-webkit-scrollbar {
    height: 5px;
  }
  .thumbnail {
    width: 85px;
  }
}/*# sourceMappingURL=pdp.css.map */