* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #D80032;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .loader-text {
  color: #ffffff;
  font-size: clamp(2rem, 10vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  letter-spacing: 0.3em;
}
.loader .loader-text span {
  font-weight: 400;
  font-size: 0.35em;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.3rem;
  text-transform: none;
  text-align: right;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.navbar .logo {
  font-weight: 900;
  color: #D80032;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}
.navbar .logo span {
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}
.navbar .btn-buy-nav {
  padding: 0.7rem 2rem;
  background: #D80032;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.navbar .btn-buy-nav:hover {
  background: #8a0020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 0, 50, 0.4);
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: 60px;
}
.hero .hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 80px;
}
.hero .hero-text .hero-title {
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: 0.85;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #D80032;
}
.hero .hero-text .hero-title .line {
  display: block;
}
.hero .hero-text .hero-title .text-outline {
  color: #8a0020;
}
.hero .hero-text .hero-subtitle {
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.7;
}
.hero .hero-visual {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
}
.hero .hero-visual .blob-container {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 1;
}
.hero .hero-visual .blob-container .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transform: scale(0.5);
}
.hero .hero-visual .blob-container .blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(216, 0, 50, 0.7) 0%, rgba(138, 0, 32, 0.4) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 60% 40% 50% 50%/50% 60% 40% 50%;
}
.hero .hero-visual .blob-container .blob-2 {
  width: 250px;
  height: 200px;
  background: radial-gradient(circle, rgba(216, 0, 50, 0.5) 0%, rgba(255, 77, 109, 0.3) 40%, transparent 70%);
  top: 60%;
  left: 55%;
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
}
.hero .hero-visual .bottle-hero {
  position: relative;
  height: 380px;
  width: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(-100vh) rotate(-10deg);
  filter: drop-shadow(0 25px 50px rgba(216, 0, 50, 0.3));
}
.hero .scroll-hint {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.hero .scroll-hint:hover {
  opacity: 1;
}
.hero .scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero .scroll-hint .arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(10px);
  }
  60% {
    transform: rotate(45deg) translateY(5px);
  }
}
.marquee-band {
  position: relative;
  z-index: 100;
  background: #D80032;
  color: #ffffff;
  padding: 0.85rem 0;
  white-space: nowrap;
  transform: rotate(-2deg);
  width: 105%;
  margin-left: -2.5%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 0 -2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.marquee-band .marquee-content {
  display: inline-flex;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  letter-spacing: 0.1em;
  animation: marquee 18s linear infinite;
}
.marquee-band .marquee-content span {
  padding-right: 0.5rem;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section-divider {
  position: relative;
  z-index: 60;
  margin-bottom: -40px;
}

.concept-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
  margin-top: -60px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.concept-section .lego-bg-container {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  z-index: -1;
}
.concept-section .lego-bg-container .lego-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.concept-section .concept-text {
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 2rem;
}
.concept-section .concept-text h2 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  line-height: 0.95;
}
.concept-section .concept-text p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
}
.concept-section .concept-text .cta-button {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: #D80032;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.concept-section .concept-text .cta-button:hover {
  background: #ffffff;
  color: #D80032;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-detail {
  padding: 6rem 2rem;
  background: #f8f8f8;
}
.product-detail .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #D80032;
  margin-bottom: 3rem;
}
.product-detail .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-detail .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.product-detail .detail-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-detail .detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.product-detail .detail-card .color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 -3px 8px rgba(0, 0, 0, 0.2);
}
.product-detail .detail-card .bottle-detail {
  max-height: 220px;
  width: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(216, 0, 50, 0.15));
}
.product-detail .detail-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.product-detail .detail-card .tone-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-detail .detail-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D80032;
  margin-bottom: 1.5rem;
}
.product-detail .detail-card .btn-buy {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #D80032;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.product-detail .detail-card .btn-buy:hover {
  background: #8a0020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 0, 50, 0.4);
}

footer {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
}
footer p {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .hero .hero-text {
    padding-top: 100px;
  }
  .hero .hero-visual {
    height: 45vh;
    min-height: 300px;
  }
  .hero .hero-visual .bottle-hero {
    height: 300px;
  }
  .hero .hero-visual .blob-container {
    width: 350px;
    height: 350px;
  }
  .hero .hero-visual .blob-container .blob-1 {
    width: 280px;
    height: 280px;
  }
  .hero .hero-visual .blob-container .blob-2 {
    width: 180px;
    height: 150px;
  }
  .concept-section {
    min-height: 70vh;
  }
  .product-detail {
    padding: 5rem 1rem;
  }
  .product-detail .detail-card {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-visual .bottle-hero {
    height: 250px;
  }
  .hero .hero-visual .blob-container {
    width: 280px;
    height: 280px;
  }
  .hero .hero-visual .blob-container .blob-1 {
    width: 220px;
    height: 220px;
  }
  .hero .hero-visual .blob-container .blob-2 {
    width: 140px;
    height: 120px;
  }
}

/*# sourceMappingURL=style.css.map */
