
                            /* 쿠팡 상품 카드 스타일 */
                            .community-post-content .coupang-product-card {
                                border: 2px solid #ffe0c2 !important;
                                border-radius: 15px !important;
                                padding: 20px !important;
                                margin: 30px 0 !important;
                                background: #fff !important;
                                box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
                                max-width: 600px !important;
                                margin-left: auto !important;
                                margin-right: auto !important;
                            }
                            
                            .community-post-content .coupang-product-image {
                                text-align: center !important;
                                margin-bottom: 20px !important;
                                background: #fdf8f2 !important;
                                padding: 20px !important;
                                border-radius: 10px !important;
                            }
                            
                            .community-post-content .coupang-product-image img {
                                max-width: 100% !important;
                                height: auto !important;
                                max-height: 300px !important;
                                object-fit: contain !important;
                            }
                            
                            .community-post-content .coupang-product-info {
                                text-align: center !important;
                                margin-bottom: 20px !important;
                            }
                            
                            .community-post-content .coupang-product-name {
                                font-size: 1.3em !important;
                                color: #333 !important;
                                margin-bottom: 15px !important;
                                line-height: 1.5 !important;
                                font-weight: bold !important;
                            }
                            
                            .community-post-content .coupang-buy-button {
                                display: block !important;
                                width: 100% !important;
                                padding: 18px !important;
                                background: #e8730c !important;
                                color: white !important;
                                text-align: center !important;
                                text-decoration: none !important;
                                border-radius: 10px !important;
                                font-size: 1.2em !important;
                                font-weight: bold !important;
                                transition: all 0.3s !important;
                            }
                            
                            .community-post-content .coupang-buy-button:hover {
                                background: #cf6400 !important;
                                transform: scale(1.02) !important;
                                box-shadow: 0 5px 15px rgba(232, 115, 12, 0.3) !important;
                            }
                            
                            /* 격자형 쿠팡 상품 컨테이너 */
                            .community-post-content .coupang-grid-container {
                                display: grid !important;
                                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
                                gap: 12px !important;
                                margin: 20px 0 !important;
                            }
                            
                            .community-post-content .coupang-grid-item {
                                background: white !important;
                                border: 1px solid #e0e0e0 !important;
                                border-radius: 8px !important;
                                overflow: hidden !important;
                                transition: all 0.3s !important;
                                text-decoration: none !important;
                                color: inherit !important;
                            }
                            
                            .community-post-content .coupang-grid-image-wrapper {
                                position: relative !important;
                                width: 100% !important;
                                padding-top: 100% !important;
                                background: #fdf8f2 !important;
                                overflow: hidden !important;
                            }
                            
                            .community-post-content .coupang-grid-image {
                                position: absolute !important;
                                top: 0 !important;
                                left: 0 !important;
                                width: 100% !important;
                                height: 100% !important;
                                object-fit: contain !important;
                                padding: 10px !important;
                            }
                            
                            .community-post-content .coupang-grid-badges {
                                position: absolute !important;
                                top: 8px !important;
                                left: 8px !important;
                                display: flex !important;
                                flex-direction: column !important;
                                gap: 4px !important;
                            }
                            
                            .community-post-content .coupang-grid-badge {
                                padding: 4px 8px !important;
                                border-radius: 4px !important;
                                font-size: 0.75em !important;
                                font-weight: bold !important;
                                color: white !important;
                            }
                            
                            .community-post-content .coupang-grid-badge-rocket {
                                background: #e8730c !important;
                            }
                            
                            .community-post-content .coupang-grid-badge-free {
                                background: #27ae60 !important;
                            }
                            
                            .community-post-content .coupang-grid-title {
                                padding: 12px !important;
                                font-size: 0.9em !important;
                                color: #333 !important;
                                line-height: 1.4 !important;
                                height: 3.6em !important;
                                overflow: hidden !important;
                                display: -webkit-box !important;
                                -webkit-line-clamp: 2 !important;
                                -webkit-box-orient: vertical !important;
                                text-overflow: ellipsis !important;
                            }
                            
                            @media (max-width: 768px) {
                                .community-post-content .coupang-product-card {
                                    padding: 15px !important;
                                }
                                
                                .community-post-content .coupang-product-name {
                                    font-size: 1.1em !important;
                                }
                                
                                .community-post-content .coupang-buy-button {
                                    padding: 15px !important;
                                    font-size: 1.1em !important;
                                }
                                
                                .community-post-content .coupang-grid-container {
                                    grid-template-columns: repeat(4, 1fr) !important;
                                    gap: 5px !important;
                                }
                                
                                .community-post-content .coupang-grid-badge {
                                    padding: 2px 4px !important;
                                    font-size: 0.55em !important;
                                }
                                
                                .community-post-content .coupang-grid-badges {
                                    top: 4px !important;
                                    left: 4px !important;
                                    gap: 2px !important;
                                }
                                
                                .community-post-content .coupang-grid-title {
                                    font-size: 0.7em !important;
                                    padding: 8px !important;
                                }
                            }
                            