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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bcd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 2px solid #111111;
}

.bcd-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.bcd-cart-btn {
  padding: 1rem 2.5rem;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcd-cart-btn:hover {
  background: #ffffff;
  color: #111111;
}

.bcd-main {
  margin-top: 100px;
}

.bcd-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  background: #ffffff;
}

.bcd-hero-large-text {
  padding: 8rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
}

.bcd-hero-word {
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: #111111;
  display: block;
}

.bcd-hero-image-marquee {
  height: 300px;
  overflow: hidden;
  background: #111111;
  border-top: 2px solid #111111;
  border-bottom: 2px solid #111111;
  position: relative;
}

.bcd-marquee-track {
  display: flex;
  gap: 2rem;
  height: 100%;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bcd-marquee-track img {
  height: 100%;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.bcd-products {
  padding: 8rem 4rem;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.bcd-products-layout {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.bcd-product {
  background: #ffffff;
  border: 2px solid #111111;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 650px;
}

.bcd-product-wide {
  grid-column: span 1;
}

.bcd-product-tall {
  grid-row: span 1;
}

.bcd-product:hover {
  transform: translateY(-12px);
  box-shadow: 20px 20px 0 #111111;
}

.bcd-product-image-area {
  flex: 1;
  background: #F5F5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
  position: relative;
}

.bcd-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bcd-product:hover .bcd-product-img {
  transform: scale(1.2) rotate(-2deg);
}

.bcd-image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #111111;
  color: #111111;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.bcd-product-image-area:hover .bcd-image-nav {
  opacity: 1;
}

.bcd-image-nav-prev {
  left: 1rem;
}

.bcd-image-nav-next {
  right: 1rem;
}

.bcd-image-nav:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-product-meta {
  padding: 2rem;
  border-top: 2px solid #111111;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  flex-shrink: 0;
}

.bcd-product-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

.bcd-product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.bcd-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

.bcd-add-btn {
  padding: 1rem 2rem;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.bcd-add-btn:hover {
  background: #ffffff;
  color: #111111;
}

.bcd-info-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #111111;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcd-info-btn:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.bcd-cart-overlay.active {
  display: flex;
}

.bcd-cart-sidebar {
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: #ffffff;
  border-left: 2px solid #111111;
  display: flex;
  flex-direction: column;
}

.bcd-cart-header {
  padding: 3rem;
  border-bottom: 2px solid #111111;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bcd-cart-header h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111111;
}

.bcd-cart-close {
  width: 48px;
  height: 48px;
  border: 2px solid #111111;
  background: #ffffff;
  font-size: 2rem;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcd-cart-close:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.bcd-cart-empty {
  text-align: center;
  color: #666666;
  padding: 6rem 2rem;
  font-size: 1.125rem;
}

.bcd-cart-footer {
  padding: 3rem;
  border-top: 2px solid #111111;
}

.bcd-cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
}

.bcd-cart-total-amount {
  color: #111111;
}

.bcd-checkout-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcd-checkout-btn:hover {
  background: #ffffff;
  color: #111111;
}

.bcd-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.bcd-modal-overlay.active {
  display: flex;
}

.bcd-modal {
  background: #ffffff;
  border: 2px solid #111111;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 20px 20px 0 #111111;
}

.bcd-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: 2px solid #111111;
  background: #ffffff;
  font-size: 2rem;
  color: #111111;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcd-modal-close:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-modal-content {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bcd-modal-image-container {
  position: relative;
  width: 100%;
  background: #F5F5F7;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcd-modal-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
}

.bcd-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #111111;
  color: #111111;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.bcd-modal-nav-prev {
  left: 1rem;
}

.bcd-modal-nav-next {
  right: 1rem;
}

.bcd-modal-nav:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-modal-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bcd-modal-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666666;
}

.bcd-product-details {
  padding: 1.5rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bcd-product-details p {
  margin: 0;
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.6;
}

.bcd-size-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bcd-size-selector label {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
}

.bcd-sizes {
  display: flex;
  gap: 0.75rem;
}

.bcd-size-btn {
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #111111;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcd-size-btn:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-size-btn.selected {
  background: #111111;
  color: #ffffff;
}

.bcd-quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bcd-quantity-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #111111;
  border: 2px solid #111111;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcd-quantity-btn:hover {
  background: #111111;
  color: #ffffff;
}

.bcd-quantity-input {
  width: 80px;
  padding: 0.75rem;
  border: 2px solid #111111;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.bcd-btn {
  padding: 1rem 2rem;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcd-btn-primary {
  background: #111111;
  color: #ffffff;
}

.bcd-btn-primary:hover {
  background: #ffffff;
  color: #111111;
}

@media (max-width: 968px) {
  .bcd-modal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 968px) {
  .bcd-products-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .bcd-product {
    height: 600px;
  }
}

@media (max-width: 968px) {
  .bcd-header {
    padding: 1.5rem 2rem;
  }

  .bcd-hero-word {
    font-size: clamp(4rem, 15vw, 12rem);
  }

  .bcd-hero-large-text {
    padding: 6rem 2rem 3rem;
  }

  .bcd-hero-image-marquee {
    height: 200px;
  }

  .bcd-products {
    padding: 6rem 2rem;
  }

  .bcd-products-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .bcd-product-wide {
    grid-column: span 1;
  }

  .bcd-product-tall {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .bcd-hero-large-text {
    padding: 4rem 1.5rem 2rem;
  }

  .bcd-hero-image-marquee {
    height: 150px;
  }

  .bcd-products-layout {
    grid-template-columns: 1fr;
  }

  .bcd-product-wide {
    grid-column: span 1;
  }

  .bcd-cart-sidebar {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bcd-marquee-track {
    animation: none;
  }
}
