.product-grid {
    margin: 0 -10px;
    overflow: hidden; /* clearfix */
}

.product-grid::after {
    content: "";
    display: table;
    clear: both;
}

.product-grid .product-item {
    float: left;
    width: 33.33%;
    padding: 10px;
    box-sizing: border-box;
}

.product-grid .product-item-inner {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    background-color: #f9f9f9;
}

.product-grid .product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-grid .product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-grid .price {
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}

.product-grid .price .original-price {
    text-decoration: line-through;
    color: #777;
    display: block;
}

.product-grid .price .discount-price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    display: block;
}

.product-grid a.button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

/* 이하 기존 상품 관련 스타일... */

/* 하단 텍스트 스타일 */
h2 {
    margin-top: 40px;
    color: #333;
    font-size: 24px;
}

.flower-meaning-box,
.congratulatory-message-box {
    background-color: #f8e8e8;
    border: 2px solid #e6b3b3;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.congratulatory-message-box {
    background-color: #f0f8ff;
    border-color: #4682b4;
}

.flower-meaning-box h3,
.congratulatory-message-box h3 {
    color: #8e4b4b;
    margin-top: 0;
    font-size: 1.2em;
}

.congratulatory-message-box h3 {
    color: #4682b4;
}

.flower-meaning-content,
.congratulatory-message-content {
    color: #4a4a4a;
    font-style: italic;
    line-height: 1.6;
}

/* 일반 텍스트 스타일 */
p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* 링크 스타일 */
a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 반응형 스타일 유지 */
@media (max-width: 768px) {
    .product-grid .product-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .product-grid .product-item {
        width: 100%;
    }
}
