/* SUZURI Store：追加スタイル（1.6.0 でページ埋め込みからファイルへ） */
        /* 税込み価格表示の改善 */
        .suzuri-product-price {
            font-weight: 700;
            color: #e74c3c;
            line-height: 1.4;
        }
        
        .tax-note {
            font-size: 12px;
            color: #6c757d;
            font-weight: normal;
        }
        
        .tax-excluded-price {
            color: #999;
            font-size: 12px;
            display: block;
            margin-top: 4px;
        }
        
        .price-unavailable {
            color: #6c757d !important;
            font-style: italic;
            font-size: 14px;
        }
        
        .no-image-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 200px;
            background: #f8f9fa;
            color: #6c757d;
            border: 2px dashed #dee2e6;
        }
        
        /* Cocoonテーマとの互換性確保 */
        .suzuri-products-grid {
            display: grid;
            gap: 20px;
            margin: 20px 0;
        }
        .suzuri-grid-columns-2 { grid-template-columns: repeat(2, 1fr); }
        .suzuri-grid-columns-3 { grid-template-columns: repeat(3, 1fr); }
        .suzuri-grid-columns-4 { grid-template-columns: repeat(4, 1fr); }
        
        /* ページネーション機能 */
        .suzuri-pagination-wrapper {
            margin: 40px 0;
            text-align: center;
        }
        
        .suzuri-pagination {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            background: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }
        
        .suzuri-page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 8px 12px;
            background: #f8f9fa;
            color: #495057;
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid #dee2e6;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .suzuri-page-link:hover {
            background: #3498db;
            color: white;
            border-color: #3498db;
            text-decoration: none;
            transform: translateY(-1px);
        }
        
        .suzuri-page-link.suzuri-current {
            background: #3498db;
            color: white;
            border-color: #3498db;
            font-weight: 700;
        }
        
        .suzuri-page-link.suzuri-prev,
        .suzuri-page-link.suzuri-next {
            font-weight: 600;
            padding: 8px 16px;
        }
        
        .suzuri-page-dots {
            color: #6c757d;
            font-weight: bold;
            padding: 8px 4px;
        }
        
        .suzuri-pagination-info {
            color: #6c757d;
            font-size: 14px;
            font-style: italic;
        }
        
        /* ダークモード対応 */
        body.dark-theme .suzuri-pagination {
            background: #2c3e50;
            border-color: #495057;
        }
        
        body.dark-theme .suzuri-page-link {
            background: #495057;
            color: #adb5bd;
            border-color: #6c757d;
        }
        
        body.dark-theme .suzuri-page-link:hover,
        body.dark-theme .suzuri-page-link.suzuri-current {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        body.dark-theme .suzuri-pagination-info,
        body.dark-theme .suzuri-page-dots {
            color: #bdc3c7;
        }
        
        /* 警告メッセージ */
        .suzuri-warning {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 12px 16px;
            margin-bottom: 20px;
            border-radius: 6px;
            color: #856404;
            position: relative;
        }
        
        body.dark-theme .suzuri-warning {
            background: #5d4e37;
            border-color: #8b7355;
            color: #f4e7c1;
        }
        
        /* 商品数カウンター */
        .suzuri-products-header {
            margin-bottom: 20px;
        }
        
        .suzuri-products-count {
            text-align: right;
            color: #6c757d;
            font-size: 14px;
            font-weight: 500;
        }
        
        body.dark-theme .suzuri-products-count {
            color: #bdc3c7;
        }
        
        /* 画像エラー処理の強化 */
        .suzuri-image-error-handler {
            transition: all 0.3s ease;
        }
        
        .suzuri-fallback-image {
            border: 2px dashed #dee2e6;
            background: #f8f9fa;
            border-radius: 6px;
        }
        
        .suzuri-image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                        linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                        linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            color: #6c757d;
            font-size: 12px;
            border-radius: 4px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }
        
        /* デバッグ情報スタイル */
        .suzuri-debug-info {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 10px;
            margin: 10px 0;
            border-radius: 4px;
            font-family: monospace;
            font-size: 12px;
        }
        
        .suzuri-debug-info strong {
            color: #856404;
        }
        
        /* 「もっと見る」ボタン機能 */
        .suzuri-load-more-wrapper {
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            border: 1px solid #dee2e6;
        }
        
        .suzuri-load-more-btn {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
            margin-bottom: 12px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        .suzuri-load-more-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, #218838, #1e7e34);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
        }
        
        .suzuri-load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .suzuri-load-more-info {
            color: #6c757d;
            font-size: 14px;
            margin-top: 8px;
        }
        
        .suzuri-all-loaded {
            background: #d4edda;
            color: #155724;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            border: 1px solid #c3e6cb;
        }
        
        body.dark-theme .suzuri-load-more-wrapper {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border-color: #495057;
        }
        
        body.dark-theme .suzuri-load-more-info {
            color: #bdc3c7;
        }
        
        body.dark-theme .suzuri-all-loaded {
            background: #1e4d32;
            color: #a3d977;
            border-color: #2d5a3d;
        }
        
        /* 管理画面用スタイル */
        .suzuri-admin-controls {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            margin: 20px 0;
        }
        
        .suzuri-admin-controls .button {
            margin-right: 8px;
            margin-bottom: 4px;
        }
        
        .suzuri-admin-table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 6px;
        }
        
        .suzuri-admin-pagination {
            margin-top: 20px;
            text-align: center;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 6px;
        }
        
        .suzuri-admin-pagination .button {
            margin: 0 2px;
        }
        
        .suzuri-bulk-actions {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 6px;
            margin-top: 30px;
        }
        
        .suzuri-bulk-actions h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .suzuri-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .suzuri-pagination {
                flex-wrap: wrap;
                gap: 4px;
                padding: 8px 12px;
            }
            
            .suzuri-page-link {
                min-width: 36px;
                height: 36px;
                padding: 6px 10px;
                font-size: 14px;
            }
            
            .suzuri-page-link.suzuri-prev,
            .suzuri-page-link.suzuri-next {
                padding: 6px 12px;
            }
            
            .suzuri-pagination-info {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .suzuri-pagination {
                gap: 2px;
                padding: 6px 8px;
            }
            
            .suzuri-page-link {
                min-width: 32px;
                height: 32px;
                padding: 4px 8px;
                font-size: 13px;
            }
            
            .suzuri-page-dots {
                padding: 4px 2px;
            }
            
            .suzuri-pagination-wrapper {
                margin: 24px 0;
            }
        }
        
        /* 全商品表示時の最適化 */
        .suzuri-products-grid.suzuri-show-all {
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* 読み込み改善 */
        .suzuri-product-item {
            animation: slideUp 0.3s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .suzuri-product-item:nth-child(1) { animation-delay: 0.05s; }
        .suzuri-product-item:nth-child(2) { animation-delay: 0.1s; }
        .suzuri-product-item:nth-child(3) { animation-delay: 0.15s; }
        .suzuri-product-item:nth-child(4) { animation-delay: 0.2s; }
        .suzuri-product-item:nth-child(5) { animation-delay: 0.25s; }
        .suzuri-product-item:nth-child(6) { animation-delay: 0.3s; }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
