/* =========================================================================
   Gorilla Sleep - Brand Styles
   ========================================================================= */
::selection {
  color: #fff;
  background-color: #0a0a0a;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-from-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-from-bottom {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-from-top {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scroll-line-anim {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.gorilla-wrapper {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #1c1c1e;
  background-color: #0a0a0a;
}
.gorilla-wrapper::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-color: #0a0a0a;
}
.gorilla-wrapper > * {
  position: relative;
  z-index: 10;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.hero-section .hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}
@media (width >= 768px) {
  .hero-section .hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.hero-section .hero-content {
  max-width: 80rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (width >= 768px) {
  .hero-section .hero-content {
    padding: 0 6rem;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: auto;
  margin-left: 0;
}
.hero-section .hero-content .hero-container .hero-logo-wrapper {
  margin-bottom: 2rem;
  animation: fade-in 1s ease-out forwards;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-logo-wrapper {
    text-align: left;
  }
}
.hero-section .hero-content .hero-container .hero-logo-wrapper .hero-logo-img {
  width: 95%;
  height: auto;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-logo-wrapper .hero-logo-img {
    width: 100%;
    max-width: 960px;
  }
}
.hero-section .hero-content .hero-container .hero-title {
  position: relative;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  word-break: normal;
  animation: slide-in-from-bottom 1s ease-out forwards;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-title {
    font-size: 2.25rem;
  }
}
.hero-section .hero-content .hero-container .hero-title .hero-title-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: 0.1em;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-title .hero-title-sub {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
.hero-section .hero-content .hero-container .hero-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  padding-top: 2rem;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-desc-wrapper {
    flex-direction: row;
    align-items: center;
    padding-top: 4rem;
  }
}
.hero-section .hero-content .hero-container .hero-desc-wrapper .hero-description {
  max-width: 32rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  word-break: keep-all;
}
@media (width >= 768px) {
  .hero-section .hero-content .hero-container .hero-desc-wrapper .hero-description {
    font-size: 1.15rem;
  }
}
.hero-section .hero-content .hero-container .hero-desc-wrapper .hero-btn {
  display: flex;
  align-items: center;
  padding: 1.25rem 3rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  background-color: #facc15;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-section .hero-content .hero-container .hero-desc-wrapper .hero-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-4px);
}
.hero-section .hero-content .hero-container .hero-desc-wrapper .hero-btn:hover .hero-btn-icon {
  transform: translateX(0.5rem);
}
.hero-section .hero-content .hero-container .hero-desc-wrapper .hero-btn .hero-btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.4s;
}
.hero-section .scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 5rem;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.hero-section .scroll-hint .scroll-line {
  position: relative;
  width: 4rem;
  height: 1px;
  overflow: hidden;
  background-color: rgba(250, 204, 21, 0.2);
}
.hero-section .scroll-hint .scroll-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #facc15;
  animation: scroll-line-anim 2s infinite ease-in-out;
}

.concept-section {
  padding: 4rem 0 4rem;
  overflow: hidden;
}
@media (width >= 768px) {
  .concept-section {
    padding: 6rem 0 6rem;
  }
}
.concept-section {
  background-color: #fff;
}
.concept-section + .concept-section {
  padding-top: 2rem;
}
@media (width >= 768px) {
  .concept-section + .concept-section {
    padding-top: 0;
  }
}
.concept-section .concept-container {
  max-width: 80rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (width >= 768px) {
  .concept-section .concept-container {
    padding: 0 6rem;
  }
}
.concept-section .concept-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (width >= 768px) {
  .concept-section .concept-container {
    flex-direction: row;
    gap: 5rem;
  }
  .concept-section .concept-container.is-reverse {
    flex-direction: row-reverse;
  }
}
.concept-section .concept-text-content {
  position: relative;
  width: 100%;
}
@media (width >= 768px) {
  .concept-section .concept-text-content {
    width: 55%;
  }
}
.concept-section .concept-text-content .bg-number {
  position: absolute;
  top: -3rem;
  left: -1rem;
  z-index: 0;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(250, 204, 21, 0.2);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
@media (width >= 768px) {
  .concept-section .concept-text-content .bg-number {
    left: -3rem;
    font-size: 15rem;
  }
}
.concept-section .concept-text-content .text-wrapper {
  position: relative;
  z-index: 10;
}
.concept-section .concept-text-content .text-wrapper .concept-label {
  display: block;
  margin-bottom: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
.concept-section .concept-text-content .text-wrapper .concept-title {
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.05em;
}
@media (width >= 768px) {
  .concept-section .concept-text-content .text-wrapper .concept-title {
    font-size: 3.7rem;
  }
}
.concept-section .concept-text-content .text-wrapper .concept-title {
  color: #0a0a0a;
}
.concept-section .concept-text-content .text-wrapper .concept-description {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #1c1c1e;
  letter-spacing: 0.1em;
}
@media (width >= 768px) {
  .concept-section .concept-text-content .text-wrapper .concept-description {
    font-size: 1rem;
  }
}
.concept-section .concept-text-content .text-wrapper .features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}
.concept-section .concept-text-content .text-wrapper .features-grid .feature-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.concept-section .concept-text-content .text-wrapper .features-grid .feature-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(101.8620689655, 101.8620689655, 109.1379310345);
  text-transform: uppercase;
}
.concept-section .concept-image-content {
  width: 100%;
}
@media (width >= 768px) {
  .concept-section .concept-image-content {
    width: 45%;
  }
}
.concept-section .concept-image-content .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 3/4;
  margin: 0 auto;
  overflow: hidden;
}
.concept-section .concept-image-content .image-wrapper .concept-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: transform 2s ease;
}
.concept-section .concept-image-content .image-wrapper .image-border {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 30px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: xor;
}

.video-section {
  padding: 4rem 0 4rem;
  overflow: hidden;
}
@media (width >= 768px) {
  .video-section {
    padding: 6rem 0 6rem;
  }
}
.video-section {
  background-color: #0a0a0a;
}
.video-section .video-container {
  max-width: 80rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (width >= 768px) {
  .video-section .video-container {
    padding: 0 6rem;
  }
}
.video-section .video-header {
  margin-bottom: 2rem;
}
@media (width >= 768px) {
  .video-section .video-header {
    margin-bottom: 3rem;
  }
}
.video-section .video-header .video-label {
  display: block;
  margin-bottom: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
.video-section .video-header .video-title {
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.05em;
}
@media (width >= 768px) {
  .video-section .video-header .video-title {
    font-size: 3.7rem;
  }
}
.video-section .video-header .video-title {
  margin-bottom: 0;
  font-size: 3rem;
}
@media (width >= 768px) {
  .video-section .video-header .video-title {
    font-size: 4.5rem;
  }
}
.video-section .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.video-section .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-section .video-footer {
  margin-top: 0.8rem;
}
.video-section .video-footer .video-description {
  font-size: 0.8rem;
  color: #cccccc;
}
@media (width >= 768px) {
  .video-section .video-footer .video-description {
    font-size: 1rem;
  }
}

.products-section {
  padding: 4rem 0 8rem;
  overflow: hidden;
}
@media (width >= 768px) {
  .products-section {
    padding: 6rem 0 12rem;
  }
}
.products-section {
  color: #fff;
  background-color: transparent;
}
.products-section .products-header {
  max-width: 80rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (width >= 768px) {
  .products-section .products-header {
    padding: 0 6rem;
  }
}
.products-section .products-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (width >= 768px) {
  .products-section .products-header {
    flex-direction: row;
  }
}
.products-section .products-header .title-wrapper .products-subtitle {
  display: block;
  margin-bottom: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
.products-section .products-header .title-wrapper .products-title {
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.05em;
}
@media (width >= 768px) {
  .products-section .products-header .title-wrapper .products-title {
    font-size: 3.7rem;
  }
}
.products-section .products-header .title-wrapper .products-title {
  margin-bottom: 0;
  font-size: 3rem;
}
@media (width >= 768px) {
  .products-section .products-header .title-wrapper .products-title {
    font-size: 4.5rem;
  }
}
.products-section .products-header .nav-btns {
  display: flex;
  gap: 1rem;
}
.products-section .products-header .nav-btns button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #facc15;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.products-section .products-header .nav-btns button:hover {
  color: #0a0a0a;
  background-color: #facc15;
  border-color: #facc15;
  transform: translateY(-2px);
}
.products-section .products-header .nav-btns button i {
  font-size: 1.25rem;
}
.products-section .slider-container::-webkit-scrollbar {
  display: block;
  height: 6px;
}
@media (width <= 767px) {
  .products-section .slider-container::-webkit-scrollbar {
    display: none;
  }
}
.products-section .slider-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.products-section .slider-container::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.8);
  border-radius: 999px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.products-section .slider-container::-webkit-scrollbar-thumb:hover {
  background: #facc15;
}
.products-section .slider-container {
  padding-bottom: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 6rem;
  scrollbar-width: auto;
  scroll-behavior: smooth;
}
@media (width <= 767px) {
  .products-section .slider-container {
    scrollbar-width: none;
  }
}
.products-section .slider-container .slider-track {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem;
}
.products-section .slider-container .slider-track::after {
  flex: 0 0 0.5rem;
  content: "";
}
@media (width >= 768px) {
  .products-section .slider-container .slider-track {
    gap: 2rem;
    padding: 0 6rem;
  }
  .products-section .slider-container .slider-track::after {
    flex: 0 0 4rem;
    content: "";
  }
}
.products-section .product-slide {
  display: flex;
  flex: 0 0 95%;
  flex-direction: column;
  scroll-snap-align: center;
  transition: opacity 0.5s;
}
@media (width >= 768px) {
  .products-section .product-slide {
    flex: 0 0 800px;
    max-width: 80%;
    scroll-snap-align: start;
  }
}
.products-section .product-slide.is-active {
  opacity: 1;
}
.products-section .product-slide .slide-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}
@media (width >= 768px) {
  .products-section .product-slide .slide-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.products-section .product-slide .slide-card:hover {
  background-color: #1a1a1a;
}
.products-section .product-slide .slide-card:hover .product-image {
  transform: scale(1.05);
}
@media (width >= 768px) {
  .products-section .product-slide .slide-image {
    grid-column: span 2/span 2;
  }
}
.products-section .product-slide .slide-image .product-image {
  aspect-ratio: 1;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.products-section .product-slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
@media (width >= 768px) {
  .products-section .product-slide .slide-content {
    grid-column: span 2/span 2;
    padding: 3rem;
  }
}
.products-section .product-slide .slide-content .info-header .product-category {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 900;
  color: #6b7280;
  text-transform: uppercase;
}
.products-section .product-slide .slide-content .info-header .product-name {
  margin-bottom: 0.75rem;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  word-break: normal;
}
@media (width >= 768px) {
  .products-section .product-slide .slide-content .info-header .product-name {
    font-size: 2.25rem;
  }
}
.products-section .product-slide .slide-content .info-header .product-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(178.5, 178.5, 178.5);
}
@media (width >= 768px) {
  .products-section .product-slide .slide-content .info-header .product-desc {
    font-size: 1rem;
  }
}
.products-section .product-slide .slide-content .info-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 2rem;
}
.products-section .product-slide .slide-content .info-footer .price-wrapper .price-label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
}
.products-section .product-slide .slide-content .info-footer .price-wrapper .price-value {
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #facc15;
}
.products-section .product-slide .slide-content .info-footer .view-detail {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.products-section .product-slide .slide-content .info-footer .view-detail i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.products-section .product-slide .slide-content .info-footer .view-detail:hover i {
  transform: translateX(4px);
}

.benefit,
.footer {
  position: relative;
  z-index: 20;
}/*# sourceMappingURL=brand_gorilla-sleep.css.map */