/* --- レイアウト基本設定 --- */
#container {
    width: 1200px;
    margin: 0 auto;
}

#main {
    width: 100%;
}

/* --- 全体の配色：明るいラグジュアリー --- */
body {
    line-height: 1.8;
}

/* 商品コンテナ */
.product-page-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

/* 右側：購入エリアの枠線デザイン */
.product-info-section {
    display: flex;
    flex-direction: column;
}

/* タイトル：文字を少し濃くして引き締める */
.main-product-name {
    font-size: 20px !important;
    letter-spacing: 0.1em !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #ddd !important; /* 下線を少し太くしてアクセントに */
    padding-bottom: 15px !important;
    line-height: 1.6;
}

/* 価格：上品なゴールド系 */
.sale-price {
    font-size: 26px !important;
    margin: 30px 0 !important;
    font-weight: bold;
}

.sale-price small{
  font-size:14px;
}

/* カートボタン：背景が明るいので「黒」で引き締めるのが一番モダンです */
.btn-cart-main {
    background: #1a1a1a !important; 
    color: #fff !important;
    border-radius: 0 !important;
    letter-spacing: 0.2em !important;
    transition: all 0.4s ease;
    border: 1px solid #1a1a1a !important;
    padding: 18px !important;
    cursor: pointer;
}

.btn-cart-main:hover {
    background: #a68b5a !important; /* ホバー時はゴールドに */
    border-color: #a68b5a !important;
}

/* --- ワイドな商品説明 --- */
.product-description-wide {
    margin: 35px auto 0;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    max-width: 900px;
    text-align: left;
}

.description-title {
    font-size: 16px;
    color: #a68b5a;
    letter-spacing: 0.4em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.description-content {
    line-height: 1.7;
    color: #444; /* 文字を少し濃くして読みやすく */
    font-size: 15px;
}

.custom-breadcrumb {
  	margin: 0 0 25px;
}

.sold-out-msg {
    margin: 20px 0 0;
 }