.giftBookPurchaseBlock {
  padding: 60px 0;
}

.giftBookPurchaseBlock .bookPurchase {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .giftBookPurchaseBlock .bookPurchase {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.giftBookPurchaseBlock .bookImage {
  flex-shrink: 0;
}

.giftBookPurchaseBlock .bookImage img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .giftBookPurchaseBlock .bookImage img {
    max-width: 150px;
  }
}

.giftBookPurchaseBlock .bookInfo {
  flex: 1;
}

.giftBookPurchaseBlock .bookTitle {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .giftBookPurchaseBlock .bookTitle {
    font-size: 1.8rem;
  }
}

.giftBookPurchaseBlock .bookSubtitle {
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}

.giftBookPurchaseBlock .purchaseLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .giftBookPurchaseBlock .purchaseLinks {
    justify-content: center;
  }
}

.giftBookPurchaseBlock .purchaseLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.giftBookPurchaseBlock .purchaseLink:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
  color: white;
}

.giftBookPurchaseBlock .purchaseLink .region {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.giftBookPurchaseBlock .purchaseLink .linkText {
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .giftBookPurchaseBlock .purchaseLink {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .giftBookPurchaseBlock .purchaseLink .region,
  .giftBookPurchaseBlock .purchaseLink .linkText {
    font-size: 0.85rem;
  }
}
