.container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 50%, #f8f6f3 100%);
  padding: 2rem 0 4rem 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #888;
}

.breadcrumbLink {
  color: #bc955c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumbLink:hover {
  color: #8b6914;
  text-decoration: underline;
}

.separator {
  margin: 0 1rem;
  color: #bc955c;
  font-weight: bold;
}

.currentPage {
  color: #333;
  font-weight: 600;
}

/* Main Product Container */
.productContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Image Section */
.imageSection {
  position: sticky;
  top: 2rem;
}

.imageWrapper {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(188, 149, 92, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imageWrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(188, 149, 92, 0.25);
}

.productImage {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.productImage:hover {
  transform: scale(1.02);
}

/* Product Information */
.infoSection {
  padding: 1rem 0;
}

.productHeader {
  margin-bottom: 2.5rem;
}

.productTitle {
  font-size: 3rem;
  font-weight: 700;
  color: #161412;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-family: "Praysire Demo", serif;
  letter-spacing: -0.02em;
}

.productSubtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
  font-style: italic;
}

/* Variant Section */
.variantSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(188, 149, 92, 0.08) 0%,
    rgba(188, 149, 92, 0.03) 100%
  );
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(188, 149, 92, 0.15);
}

.sizeInfo {
  display: flex;
  flex-direction: column;
}

.sizeLabel {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.priceSection {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.currency {
  font-size: 1.5rem;
  color: #bc955c;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bc955c;
  font-family: "Praysire Demo", serif;
}

/* Size Options */
.sizeOptions {
  margin-bottom: 3rem;
}

.sectionTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #161412;
  margin-bottom: 1.2rem;
  position: relative;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #bc955c, #8b6914);
  border-radius: 2px;
}

.sizeButtons {
  display: grid;
  gap: 1rem;
}

.sizeButton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid rgba(188, 149, 92, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sizeButton:hover {
  border-color: #bc955c;
  background: rgba(188, 149, 92, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 149, 92, 0.15);
}

.sizeName {
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}

.sizeText {
  color: #666;
  font-size: 0.9rem;
}

.sizePrice {
  font-weight: 700;
  color: #bc955c;
  font-size: 1.1rem;
}

/* Order Section */
.orderSection {
  background: linear-gradient(135deg, #bc955c 0%, #8b6914 100%);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.orderSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.orderInfo {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.orderText {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.contactButtons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.orderButton,
.messageButton {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.orderButton {
  background: white;
  color: #bc955c;
  border: 2px solid #bc955c;
}

.orderButton:hover {
  background: #bc955c;
  color: white;
}

.messageButton {
  background: #bc955c;
  color: white;
  border: 2px solid #bc955c;
}

.messageButton:hover {
  background: #8b6914;
  border-color: #8b6914;
}

.buttonIcon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Back Section */
.backSection {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(188, 149, 92, 0.2);
}

.backLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #bc955c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.backLink:hover {
  color: #8b6914;
  transform: translateX(-8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .productContainer {
    gap: 3rem;
  }

  .productTitle {
    font-size: 2.5rem;
  }

  .price {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem 0 2rem 0;
  }

  .breadcrumb {
    padding: 0 1rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
  }

  .separator {
    margin: 0 0.5rem;
  }

  .productContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .imageSection {
    position: static;
  }

  .productTitle {
    font-size: 2rem;
  }

  .variantSection {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .contactButtons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .orderButton,
  .messageButton {
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .orderSection {
    padding: 2.5rem 1.5rem;
  }

  .orderText {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .productTitle {
    font-size: 1.8rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .currency {
    font-size: 1.2rem;
  }

  .variantSection {
    padding: 1rem 1.5rem;
  }

  .sizeLabel {
    font-size: 0.9rem;
  }

  .orderSection {
    padding: 2rem 1rem;
  }

  .contactButtons {
    gap: 0.8rem;
  }

  .orderButton,
  .messageButton {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
  }

  .sizeButton {
    padding: 0.8rem 1rem;
    flex-direction: row;
    gap: 0.5rem;
    text-align: left;
    align-items: center;
  }
}
