<?php /**
 * Header Main Row Options
 *
 * @package Kadence
 */

namespace Kadence;

use Kadence\Theme_Customizer;
use function Kadence\kadence;

$settings = array(
	'product_archive_tabs' => array(
		'control_type' =&gt; 'kadence_tab_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'settings'     =&gt; false,
		'priority'     =&gt; 1,
		'input_attrs'  =&gt; array(
			'general' =&gt; array(
				'label'  =&gt; __( 'General', 'kadence' ),
				'target' =&gt; 'woocommerce_product_catalog',
			),
			'design' =&gt; array(
				'label'  =&gt; __( 'Design', 'kadence' ),
				'target' =&gt; 'woocommerce_product_catalog_design',
			),
			'active' =&gt; 'general',
		),
	),
	'product_archive_tabs_design' =&gt; array(
		'control_type' =&gt; 'kadence_tab_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'settings'     =&gt; false,
		'priority'     =&gt; 1,
		'input_attrs'  =&gt; array(
			'general' =&gt; array(
				'label'  =&gt; __( 'General', 'kadence' ),
				'target' =&gt; 'woocommerce_product_catalog',
			),
			'design' =&gt; array(
				'label'  =&gt; __( 'Design', 'kadence' ),
				'target' =&gt; 'woocommerce_product_catalog_design',
			),
			'active' =&gt; 'design',
		),
	),
	'info_product_archive_title' =&gt; array(
		'control_type' =&gt; 'kadence_title_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 2,
		'label'        =&gt; esc_html__( 'Archive Title', 'kadence' ),
		'settings'     =&gt; false,
	),
	'info_product_archive_title_design' =&gt; array(
		'control_type' =&gt; 'kadence_title_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'priority'     =&gt; 2,
		'label'        =&gt; esc_html__( 'Archive Title', 'kadence' ),
		'settings'     =&gt; false,
	),
	'product_archive_title' =&gt; array(
		'control_type' =&gt; 'kadence_switch_control',
		'sanitize'     =&gt; 'kadence_sanitize_toggle',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 3,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title' ),
		'label'        =&gt; esc_html__( 'Show Archive Title?', 'kadence' ),
		'transport'    =&gt; 'refresh',
	),
	'product_archive_title_layout' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'label'        =&gt; esc_html__( 'Archive Title Layout', 'kadence' ),
		'transport'    =&gt; 'refresh',
		'priority'     =&gt; 4,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_layout' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
		),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'normal' =&gt; array(
					'tooltip' =&gt; __( 'In Content', 'kadence' ),
					'icon'    =&gt; 'incontent',
				),
				'above' =&gt; array(
					'tooltip' =&gt; __( 'Above Content', 'kadence' ),
					'icon'    =&gt; 'abovecontent',
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-two-col',
		),
	),
	'product_archive_title_inner_layout' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 4,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_inner_layout' ),
		'label'        =&gt; esc_html__( 'Container Width', 'kadence' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
			array(
				'setting'    =&gt; 'product_archive_title_layout',
				'operator'   =&gt; '=',
				'value'      =&gt; 'above',
			),
		),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'class',
				'selector' =&gt; '.product-archive-hero-section',
				'pattern'  =&gt; 'entry-hero-layout-$',
				'key'      =&gt; '',
			),
		),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'standard' =&gt; array(
					'tooltip' =&gt; __( 'Background Fullwidth, Content Contained', 'kadence' ),
					'name'    =&gt; __( 'Standard', 'kadence' ),
					'icon'    =&gt; '',
				),
				'fullwidth' =&gt; array(
					'tooltip' =&gt; __( 'Background &amp; Content Fullwidth', 'kadence' ),
					'name'    =&gt; __( 'Fullwidth', 'kadence' ),
					'icon'    =&gt; '',
				),
				'contained' =&gt; array(
					'tooltip' =&gt; __( 'Background &amp; Content Contained', 'kadence' ),
					'name'    =&gt; __( 'Contained', 'kadence' ),
					'icon'    =&gt; '',
				),
			),
			'responsive' =&gt; false,
		),
	),
	'product_archive_title_align' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'label'        =&gt; esc_html__( 'Product Archive Title Align', 'kadence' ),
		'priority'     =&gt; 4,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_align' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
		),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'class',
				'selector' =&gt; '.product-archive-title',
				'pattern'  =&gt; array(
					'desktop' =&gt; 'title-align-$',
					'tablet'  =&gt; 'title-tablet-align-$',
					'mobile'  =&gt; 'title-mobile-align-$',
				),
				'key'      =&gt; '',
			),
		),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'left' =&gt; array(
					'tooltip'  =&gt; __( 'Left Align Title', 'kadence' ),
					'dashicon' =&gt; 'editor-alignleft',
				),
				'center' =&gt; array(
					'tooltip'  =&gt; __( 'Center Align Title', 'kadence' ),
					'dashicon' =&gt; 'editor-aligncenter',
				),
				'right' =&gt; array(
					'tooltip'  =&gt; __( 'Right Align Title', 'kadence' ),
					'dashicon' =&gt; 'editor-alignright',
				),
			),
			'responsive' =&gt; true,
		),
	),
	'product_archive_title_height' =&gt; array(
		'control_type' =&gt; 'kadence_range_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 5,
		'label'        =&gt; esc_html__( 'Container Min Height', 'kadence' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
			array(
				'setting'    =&gt; 'product_archive_title_layout',
				'operator'   =&gt; '=',
				'value'      =&gt; 'above',
			),
		),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '#inner-wrap .product-archive-hero-section .entry-header',
				'property' =&gt; 'min-height',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'size',
			),
		),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_height' ),
		'input_attrs'  =&gt; array(
			'min'     =&gt; array(
				'px'  =&gt; 10,
				'em'  =&gt; 1,
				'rem' =&gt; 1,
				'vh'  =&gt; 2,
			),
			'max'     =&gt; array(
				'px'  =&gt; 800,
				'em'  =&gt; 12,
				'rem' =&gt; 12,
				'vh'  =&gt; 100,
			),
			'step'    =&gt; array(
				'px'  =&gt; 1,
				'em'  =&gt; 0.01,
				'rem' =&gt; 0.01,
				'vh'  =&gt; 1,
			),
			'units'   =&gt; array( 'px', 'em', 'rem', 'vh' ),
		),
	),
	'product_archive_title_elements' =&gt; array(
		'control_type' =&gt; 'kadence_sorter_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 6,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_elements' ),
		'label'        =&gt; esc_html__( 'Title Elements', 'kadence' ),
		'transport'    =&gt; 'refresh',
		'settings'     =&gt; array(
			'elements'    =&gt; 'product_archive_title_elements',
			'title'       =&gt; 'product_archive_title_element_title',
			'breadcrumb'  =&gt; 'product_archive_title_element_breadcrumb',
			'description' =&gt; 'product_archive_title_element_description',
		),
	),
	'product_archive_title_heading_font' =&gt; array(
		'control_type' =&gt; 'kadence_typography_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Title Font', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_heading_font' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_typography',
				'selector' =&gt; '.product-archive-title h1',
				'property' =&gt; 'font',
				'key'      =&gt; 'typography',
			),
		),
		'input_attrs'  =&gt; array(
			'id'      =&gt; 'product_archive_title_heading_font',
			'options' =&gt; 'no-color',
		),
	),
	'product_archive_title_color' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Title Color', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_color' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-title h1',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_title_description_color' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Description Colors', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_description_color' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-title .archive-description',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-title .archive-description a:hover',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'hover',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Initial Color', 'kadence' ),
					'palette' =&gt; true,
				),
				'hover' =&gt; array(
					'tooltip' =&gt; __( 'Link Hover Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_title_breadcrumb_color' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Breadcrumb Colors', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_breadcrumb_color' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-title .kadence-breadcrumbs',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-title .kadence-breadcrumbs a:hover',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'hover',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Initial Color', 'kadence' ),
					'palette' =&gt; true,
				),
				'hover' =&gt; array(
					'tooltip' =&gt; __( 'Link Hover Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_title_background' =&gt; array(
		'control_type' =&gt; 'kadence_background_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Archive Title Background', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_background' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
			array(
				'setting'    =&gt; 'product_archive_title_layout',
				'operator'   =&gt; '=',
				'value'      =&gt; 'above',
			),
		),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_background',
				'selector' =&gt; '#inner-wrap .product-archive-hero-section .entry-hero-container-inner',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'base',
			),
		),
		'input_attrs'  =&gt; array(
			'tooltip'  =&gt; __( 'Product Archive Title Background', 'kadence' ),
		),
	),
	'product_archive_title_overlay_color' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Background Overlay Color', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_overlay_color' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.product-archive-hero-section .hero-section-overlay',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
			array(
				'setting'    =&gt; 'product_archive_title_layout',
				'operator'   =&gt; '=',
				'value'      =&gt; 'above',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Overlay Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
			'allowGradient' =&gt; true,
		),
	),
	'product_archive_title_border' =&gt; array(
		'control_type' =&gt; 'kadence_borders_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Border', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_border' ),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_title',
				'operator'   =&gt; '=',
				'value'      =&gt; true,
			),
			array(
				'setting'    =&gt; 'product_archive_title_layout',
				'operator'   =&gt; '=',
				'value'      =&gt; 'above',
			),
		),
		'settings'     =&gt; array(
			'border_top'    =&gt; 'product_archive_title_top_border',
			'border_bottom' =&gt; 'product_archive_title_bottom_border',
		),
		'live_method'     =&gt; array(
			'product_archive_title_top_border' =&gt; array(
				array(
					'type'     =&gt; 'css_border',
					'selector' =&gt; '.product-archive-hero-section .entry-hero-container-inner',
					'pattern'  =&gt; '$',
					'property' =&gt; 'border-top',
					'key'      =&gt; 'border',
				),
			),
			'product_archive_title_bottom_border' =&gt; array( 
				array(
					'type'     =&gt; 'css_border',
					'selector' =&gt; '.product-archive-hero-section .entry-hero-container-inner',
					'property' =&gt; 'border-bottom',
					'pattern'  =&gt; '$',
					'key'      =&gt; 'border',
				),
			),
		),
	),
	'info_product_archive_layout' =&gt; array(
		'control_type' =&gt; 'kadence_title_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'label'        =&gt; esc_html__( 'Archive Layout', 'kadence' ),
		'settings'     =&gt; false,
	),
	'info_product_archive_layout_design' =&gt; array(
		'control_type' =&gt; 'kadence_title_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'priority'     =&gt; 10,
		'label'        =&gt; esc_html__( 'Archive Layout', 'kadence' ),
		'settings'     =&gt; false,
	),
	'product_archive_layout' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'label'        =&gt; esc_html__( 'Archive Layout', 'kadence' ),
		'transport'    =&gt; 'refresh',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_layout' ),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'normal' =&gt; array(
					'tooltip' =&gt; __( 'Normal', 'kadence' ),
					'icon' =&gt; 'normal',
				),
				'narrow' =&gt; array(
					'tooltip' =&gt; __( 'Narrow', 'kadence' ),
					'icon' =&gt; 'narrow',
				),
				'fullwidth' =&gt; array(
					'tooltip' =&gt; __( 'Fullwidth', 'kadence' ),
					'icon' =&gt; 'fullwidth',
				),
				'left' =&gt; array(
					'tooltip' =&gt; __( 'Left Sidebar', 'kadence' ),
					'icon' =&gt; 'leftsidebar',
				),
				'right' =&gt; array(
					'tooltip' =&gt; __( 'Right Sidebar', 'kadence' ),
					'icon' =&gt; 'rightsidebar',
				),
			),
			'class'      =&gt; 'kadence-three-col',
			'responsive' =&gt; false,
		),
	),
	'product_archive_sidebar_id' =&gt; array(
		'control_type' =&gt; 'kadence_select_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'label'        =&gt; esc_html__( 'Product Archive Default Sidebar', 'kadence' ),
		'transport'    =&gt; 'refresh',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_sidebar_id' ),
		'input_attrs'  =&gt; array(
			'options' =&gt; kadence()-&gt;sidebar_options(),
		),
	),
	'product_archive_content_style' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'label'        =&gt; esc_html__( 'Content Style', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_content_style' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'class',
				'selector' =&gt; 'body.post-type-archive-product',
				'pattern'  =&gt; 'content-style-$',
				'key'      =&gt; '',
			),
			array(
				'type'     =&gt; 'class',
				'selector' =&gt; 'body.tax-product_cat',
				'pattern'  =&gt; 'content-style-$',
				'key'      =&gt; '',
			),
			array(
				'type'     =&gt; 'class',
				'selector' =&gt; 'body.tax-product_tag',
				'pattern'  =&gt; 'content-style-$',
				'key'      =&gt; '',
			),
		),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'boxed' =&gt; array(
					'tooltip' =&gt; __( 'Boxed', 'kadence' ),
					'icon'    =&gt; 'gridBoxed',
				),
				'unboxed' =&gt; array(
					'tooltip' =&gt; __( 'Unboxed', 'kadence' ),
					'icon'    =&gt; 'gridUnboxed',
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-two-col',
		),
	),
	'product_archive_show_results_count' =&gt; array(
		'control_type' =&gt; 'kadence_switch_control',
		'sanitize'     =&gt; 'kadence_sanitize_toggle',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_show_results_count' ),
		'label'        =&gt; esc_html__( 'Show Archive Results Count?', 'kadence' ),
		'transport'    =&gt; 'refresh',
	),
	'product_archive_show_order' =&gt; array(
		'control_type' =&gt; 'kadence_switch_control',
		'sanitize'     =&gt; 'kadence_sanitize_toggle',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_show_order' ),
		'label'        =&gt; esc_html__( 'Show Archive Sorting Dropdown?', 'kadence' ),
		'transport'    =&gt; 'refresh',
	),
	'product_archive_toggle' =&gt; array(
		'control_type' =&gt; 'kadence_switch_control',
		'sanitize'     =&gt; 'kadence_sanitize_toggle',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_toggle' ),
		'label'        =&gt; esc_html__( 'Show Archive Grid/List Toggle?', 'kadence' ),
		'transport'    =&gt; 'refresh',
	),
	'product_archive_image_hover_switch' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'transport'    =&gt; 'refresh',
		'label'        =&gt; esc_html__( 'Product Image Hover Switch', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_image_hover_switch' ),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'none' =&gt; array(
					'tooltip' =&gt; __( 'None', 'kadence' ),
					'name' =&gt; __( 'None', 'kadence' ),
				),
				'fade' =&gt; array(
					'tooltip' =&gt; __( 'Fade to second image', 'kadence' ),
					'name' =&gt; __( 'Fade', 'kadence' ),
				),
				'slide' =&gt; array(
					'tooltip' =&gt; __( 'Slide to second image', 'kadence' ),
					'name' =&gt; __( 'Slide', 'kadence' ),
				),
				'zoom' =&gt; array(
					'tooltip' =&gt; __( 'Zoom into second image', 'kadence' ),
					'name' =&gt; __( 'Zoom', 'kadence' ),
				),
				'flip' =&gt; array(
					'tooltip' =&gt; __( 'Flip to second image', 'kadence' ),
					'name' =&gt; __( 'Flip', 'kadence' ),
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-three-col kadence-auto-height',
		),
	),
	'product_archive_style' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'transport'    =&gt; 'refresh',
		'label'        =&gt; esc_html__( 'Button Action Style', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_style' ),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'action-on-hover' =&gt; array(
					'tooltip' =&gt; __( 'Slide up on hover', 'kadence' ),
					'name' =&gt; __( 'Bottom Slide Up', 'kadence' ),
				),
				'action-visible' =&gt; array(
					'tooltip' =&gt; __( 'On the Bottom Always Visible', 'kadence' ),
					'name' =&gt; __( 'Always Visible', 'kadence' ),
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-tiny-text',
		),
	),
	'product_archive_button_style' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'transport'    =&gt; 'refresh',
		'label'        =&gt; esc_html__( 'Button Style', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_style' ),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'text' =&gt; array(
					'tooltip' =&gt; __( 'Bold text with arrow icon.', 'kadence' ),
					'name' =&gt; __( 'Text with Arrow', 'kadence' ),
				),
				'button' =&gt; array(
					'tooltip' =&gt; __( 'Show as standard button', 'kadence' ),
					'name' =&gt; __( 'Button', 'kadence' ),
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-tiny-text',
		),
	),
	'product_archive_button_align' =&gt; array(
		'control_type' =&gt; 'kadence_switch_control',
		'sanitize'     =&gt; 'kadence_sanitize_toggle',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 7,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_align' ),
		'label'        =&gt; esc_html__( 'Align Button at Bottom?', 'kadence' ),
		'transport'    =&gt; 'refresh',
	),
	'product_archive_mobile_columns' =&gt; array(
		'control_type' =&gt; 'kadence_radio_icon_control',
		'section'      =&gt; 'woocommerce_product_catalog',
		'priority'     =&gt; 15,
		'transport'    =&gt; 'refresh',
		'label'        =&gt; esc_html__( 'Mobile Columns Layout', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_mobile_columns' ),
		'input_attrs'  =&gt; array(
			'layout' =&gt; array(
				'default' =&gt; array(
					'tooltip' =&gt; '',
					'name' =&gt; __( 'One Column', 'kadence' ),
				),
				'twocolumn' =&gt; array(
					'tooltip' =&gt; '',
					'name' =&gt; __( 'Two Columns', 'kadence' ),
				),
			),
			'responsive' =&gt; false,
			'class'      =&gt; 'kadence-tiny-text',
		),
	),
	'product_archive_title_font' =&gt; array(
		'control_type' =&gt; 'kadence_typography_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Title Font', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_title_font' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_typography',
				'selector' =&gt; '.woocommerce ul.products li.product h3, .woocommerce ul.products li.product .product-details .woocommerce-loop-product__title, .woocommerce ul.products li.product .product-details .woocommerce-loop-category__title, .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title',
				'property' =&gt; 'font',
				'key'      =&gt; 'typography',
			),
		),
		'input_attrs'  =&gt; array(
			'id'             =&gt; 'product_archive_title_font',
		),
	),
	'product_archive_price_font' =&gt; array(
		'control_type' =&gt; 'kadence_typography_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Price Font', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_price_font' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_typography',
				'selector' =&gt; '.woocommerce ul.products li.product .product-details .price',
				'property' =&gt; 'font',
				'key'      =&gt; 'typography',
			),
		),
		'input_attrs'  =&gt; array(
			'id'             =&gt; 'product_archive_price_font',
		),
	),
	'product_archive_button_color' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Colors', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_color' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button):hover, .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button):hover, .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link:hover',
				'property' =&gt; 'color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'hover',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Initial Color', 'kadence' ),
					'palette' =&gt; true,
				),
				'hover' =&gt; array(
					'tooltip' =&gt; __( 'Hover Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_button_background' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Background Colors', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_background' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button):hover, .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button):hover, .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link:hover',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'hover',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Initial Color', 'kadence' ),
					'palette' =&gt; true,
				),
				'hover' =&gt; array(
					'tooltip' =&gt; __( 'Hover Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_button_border_colors' =&gt; array(
		'control_type' =&gt; 'kadence_color_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Border Colors', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_border' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'border-color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'color',
			),
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button):hover, .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button):hover, .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link:hover',
				'property' =&gt; 'border-color',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'hover',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'colors' =&gt; array(
				'color' =&gt; array(
					'tooltip' =&gt; __( 'Initial Color', 'kadence' ),
					'palette' =&gt; true,
				),
				'hover' =&gt; array(
					'tooltip' =&gt; __( 'Hover Color', 'kadence' ),
					'palette' =&gt; true,
				),
			),
		),
	),
	'product_archive_button_border' =&gt; array(
		'control_type' =&gt; 'kadence_border_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Border', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_border' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_border',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'border',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'border',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'responsive' =&gt; false,
			'color'      =&gt; false,
		),
	),
	'product_archive_button_radius' =&gt; array(
		'control_type' =&gt; 'kadence_measure_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'priority'     =&gt; 10,
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_radius' ),
		'label'        =&gt; esc_html__( 'Product Archive Button Border Radius', 'kadence' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'border-radius',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'measure',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'responsive' =&gt; false,
		),
	),
	'product_archive_button_typography' =&gt; array(
		'control_type' =&gt; 'kadence_typography_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Font', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_typography' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_typography',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'pattern'  =&gt; array(
					'desktop' =&gt; '$',
					'tablet'  =&gt; '$',
					'mobile'  =&gt; '$',
				),
				'property' =&gt; 'font',
				'key'      =&gt; 'typography',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'input_attrs'  =&gt; array(
			'id' =&gt; 'header_button_typography',
			'options' =&gt; 'no-color',
		),
	),
	'product_archive_button_shadow' =&gt; array(
		'control_type' =&gt; 'kadence_shadow_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Shadow', 'kadence' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_boxshadow',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button), .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button), .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link',
				'property' =&gt; 'box-shadow',
				'pattern'  =&gt; '$',
				'key'      =&gt; '',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_shadow' ),
	),
	'product_archive_button_shadow_hover' =&gt; array(
		'control_type' =&gt; 'kadence_shadow_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Product Archive Button Hover State Shadow', 'kadence' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_boxshadow',
				'selector' =&gt; '.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button):hover, .woocommerce ul.products li.woo-archive-btn-button .button:not(.kb-button):hover, .wc-block-grid__product.woo-archive-btn-button .product-details .wc-block-grid__product-add-to-cart .wp-block-button__link:hover',
				'property' =&gt; 'box-shadow',
				'pattern'  =&gt; '$',
				'key'      =&gt; '',
			),
		),
		'context'      =&gt; array(
			array(
				'setting'    =&gt; 'product_archive_button_style',
				'operator'   =&gt; '=',
				'value'      =&gt; 'button',
			),
		),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_button_shadow_hover' ),
	),
	'product_archive_background' =&gt; array(
		'control_type' =&gt; 'kadence_background_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Site Background', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_background' ),
		'live_method'     =&gt; array(
			array(
				'type'     =&gt; 'css_background',
				'selector' =&gt; 'body.post-type-archive-product, body.tax-product_cat, body.tax-product_tag',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'base',
			),
		),
		'input_attrs'  =&gt; array(
			'tooltip' =&gt; __( 'Product Archive Background', 'kadence' ),
		),
	),
	'product_archive_content_background' =&gt; array(
		'control_type' =&gt; 'kadence_background_control',
		'section'      =&gt; 'woocommerce_product_catalog_design',
		'label'        =&gt; esc_html__( 'Content Background', 'kadence' ),
		'default'      =&gt; kadence()-&gt;default( 'product_archive_content_background' ),
		'live_method'  =&gt; array(
			array(
				'type'     =&gt; 'css_background',
				'selector' =&gt; 'body.post-type-archive-product .content-bg, body.tax-product_cat .content-bg, body.tax-product_tag .content-bg, body.tax-product_cat.content-style-unboxed .site, body.tax-product_tag.content-style-unboxed .site, body.post-type-archive-product.content-style-unboxed .site',
				'property' =&gt; 'background',
				'pattern'  =&gt; '$',
				'key'      =&gt; 'base',
			),
		),
		'input_attrs'  =&gt; array(
			'tooltip' =&gt; __( 'Archive Content Background', 'kadence' ),
		),
	),
);

Theme_Customizer::add_settings( $settings );

