<?php 

$language_id = 2;
foreach($data['languages'] as $language) {
	if($language['language_id'] != 1) {
		$language_id = $language['language_id'];
	}
}

$output = array();
$output["megamenu_module"] = array (
  0 => 
  array (
    'module_id' => 0,
    'layout_id' => '99999',
    'position' => 'menu',
    'status' => '1',
    'display_on_mobile' => '0',
    'sort_order' => 0,
    'orientation' => '0',
    'search_bar' => 0,
    'navigation_text' => 
    array (
      1 => '',
      2 => '',
    ),
    'home_text' => 
    array (
      1 => '',
      2 => '',
    ),
    'full_width' => '1',
    'home_item' => 'icon',
    'animation' => 'shift-up',
    'animation_time' => 200,
    'status_cache' => 0,
    'cache_time' => 1,
  ),
  1 => 
  array (
    'module_id' => '1',
    'layout_id' => '99999',
    'position' => 'menu2',
    'status' => '1',
    'display_on_mobile' => '0',
    'sort_order' => 0,
    'orientation' => '2',
    'search_bar' => 0,
    'navigation_text' => 
    array (
      1 => 'Categories',
      $language_id => 'Categories',
    ),
    'home_text' => 
    array (
      1 => '',
      $language_id => '',
    ),
    'full_width' => '0',
    'home_item' => 'disabled',
    'animation' => 'flipping',
    'animation_time' => 200,
    'status_cache' => 0,
    'cache_time' => 1,
  ),
);
 
$this->model_setting_setting->editSetting( "megamenu", $output );

$query = $this->db->query("
	DROP TABLE IF EXISTS `".DB_PREFIX ."mega_menu`
");

$query = $this->db->query("
	DROP TABLE IF EXISTS `".DB_PREFIX ."mega_menu_modules`
");

$query = $this->db->query("
	DROP TABLE IF EXISTS `".DB_PREFIX ."mega_menu_links`
");

$query = $this->db->query("
	CREATE TABLE IF NOT EXISTS `".DB_PREFIX."mega_menu` (
		`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
		`module_id` int(11) NOT NULL DEFAULT '0',
		`parent_id` int(11) NOT NULL,
		`rang` int(11) NOT NULL,
		`icon` varchar(255) NOT NULL DEFAULT '',
		`name` text,
		`link` text,
		`description` text,
		`label` text,
		`label_text_color` text,
		`label_background_color` text,
		`custom_class` text,
		`new_window` int(11) NOT NULL DEFAULT '0',
		`status` int(11) NOT NULL DEFAULT '0',
		`display_on_mobile` int(11) NOT NULL DEFAULT '0',
		`position` int(11) NOT NULL DEFAULT '0',
		`submenu_width` text,
		`submenu_type` int(11) NOT NULL DEFAULT '0',
		`submenu_background` text,
		`submenu_background_position` text,
		`submenu_background_repeat` text,
		`content_width` int(11) NOT NULL DEFAULT '12',
		`content_type` int(11) NOT NULL DEFAULT '0',
		`content` text,
		PRIMARY KEY (`id`)
	) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
");

$query = $this->db->query("
	CREATE TABLE IF NOT EXISTS `".DB_PREFIX."mega_menu_modules` (
		`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
		`name` text,
		PRIMARY KEY (`id`)
	) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
");

$query = $this->db->query("
	CREATE TABLE IF NOT EXISTS `".DB_PREFIX."mega_menu_links` (
		`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
		`name` text,
		`name_for_autocomplete` text,
		`url` text,
		`label` text,
		`label_text` text,
		`label_background` text,
		`image` text,
		PRIMARY KEY (`id`)
	) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
");

$query = $this->db->query("
     INSERT INTO `".DB_PREFIX."mega_menu_modules` (`id`, `name`) VALUES
     (1, 'Flowers')
");

$query = $this->db->query("
     INSERT INTO `".DB_PREFIX."mega_menu` (`id`, `module_id`, `parent_id`, `rang`, `icon`, `name`, `link`, `description`, `label`, `label_text_color`, `label_background_color`, `custom_class`, `new_window`, `status`, `display_on_mobile`, `position`, `submenu_width`, `submenu_type`, `submenu_background`, `submenu_background_position`, `submenu_background_repeat`, `content_width`, `content_type`, `content`) VALUES
     (1, 0, 0, 0, '', 'a:2:{i:1;s:8:\"About us\";i:" . $language_id . ";s:8:\"About us\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', NULL, 0, 0, 0, 0, '100%', 0, '', 'top right', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:29:\"&lt;p&gt;&lt;br&gt;&lt;/p&gt;\";i:" . $language_id . ";s:29:\"&lt;p&gt;&lt;br&gt;&lt;/p&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (2, 0, 0, 1, '', 'a:2:{i:1;s:14:\"Store location\";i:" . $language_id . ";s:14:\"Store location\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top right', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:29:\"&lt;p&gt;&lt;br&gt;&lt;/p&gt;\";i:" . $language_id . ";s:29:\"&lt;p&gt;&lt;br&gt;&lt;/p&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (9, 0, 0, 4, 'catalog/architecture/icon-phone.png', 'a:2:{i:1;s:20:\"Call us: 500-500-500\";i:" . $language_id . ";s:20:\"Call us: 500-500-500\";}', '', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', NULL, 0, 0, 1, 1, '100%', 0, '', 'top left', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (12, 0, 0, 2, '', 'a:2:{i:1;s:16:\"Customer service\";i:" . $language_id . ";s:16:\"Customer service\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (13, 0, 0, 3, '', 'a:2:{i:1;s:7:\"Contact\";i:" . $language_id . ";s:7:\"Contact\";}', 'index.php?route=information/contact', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (14, 1, 0, 0, 'catalog/flowers/occasions.png', 'a:2:{i:1;s:9:\"Occasions\";i:" . $language_id . ";s:9:\"Occasions\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, 'catalog/flowers/bg-occasions.png', 'top right', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (15, 1, 0, 2, 'catalog/flowers/sympathys.png', 'a:2:{i:1;s:9:\"Sympathys\";i:" . $language_id . ";s:9:\"Sympathys\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, 'catalog/flowers/bg-sympathys.png', 'top right', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (16, 1, 0, 4, 'catalog/flowers/price.png', 'a:2:{i:1;s:5:\"Price\";i:" . $language_id . ";s:5:\"Price\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (17, 1, 0, 6, 'catalog/flowers/flowers.png', 'a:2:{i:1;s:7:\"Flowers\";i:" . $language_id . ";s:7:\"Flowers\";}', 'index.php?route=product/category&amp;path=20', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, 'catalog/flowers/submenu-flowers.png', 'top right', 'no-repeat', 4, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (18, 1, 14, 1, '', 'a:2:{i:1;s:17:\"Submenu occasions\";i:" . $language_id . ";s:17:\"Submenu occasions\";}', '', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 12, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:3229:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Anniversary&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Birthday&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Business Gifting&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Congratulations&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Get Well&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Housewarming&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;I''m Sorry&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-4&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot; style=&quot;padding-left: 35px&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Just Because&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;New Baby&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Love &amp; Romance&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Retirement&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy &amp; Funerals&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Thank You&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;The Wedding Collection&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;Pink Lilies&lt;br&gt;on Sale&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";i:" . $language_id . ";s:3229:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Anniversary&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Birthday&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Business Gifting&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Congratulations&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Get Well&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Housewarming&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;I''m Sorry&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-4&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot; style=&quot;padding-left: 35px&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Just Because&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;New Baby&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Love &amp; Romance&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Retirement&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy &amp; Funerals&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Thank You&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;The Wedding Collection&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;Pink Lilies&lt;br&gt;on Sale&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (19, 1, 15, 3, '', 'a:2:{i:1;s:17:\"Submenu sympathys\";i:" . $language_id . ";s:17:\"Submenu sympathys\";}', '', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 12, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:1805:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-6&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy for Funeral Service&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy for Home &amp; Office&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Gift Baskets &amp; Food&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Plants&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Remembrance Gifts&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Same-Day Sympathy Flowers&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n\r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;All Roses&lt;br&gt;on Sale&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";i:" . $language_id . ";s:1805:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-6&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy for Funeral Service&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy for Home &amp; Office&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Gift Baskets &amp; Food&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Plants&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Remembrance Gifts&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Same-Day Sympathy Flowers&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n\r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;All Roses&lt;br&gt;on Sale&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (20, 1, 17, 7, '', 'a:2:{i:1;s:15:\"Submenu flowers\";i:" . $language_id . ";s:15:\"Submenu flowers\";}', '', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 12, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:3089:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;All Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Best Sellers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Daisies&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Lilies&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Mixed Bouquets&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Orchids&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Roses&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-4&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot; style=&quot;padding-left: 35px&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sunflower Spectacular&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Fall Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;New Arrivals&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Same-Day Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;International Delivery&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;Choose your&lt;br&gt;favotite flowers&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";i:" . $language_id . ";s:3089:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;All Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Best Sellers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Daisies&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Lilies&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Mixed Bouquets&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Orchids&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Roses&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-4&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot; style=&quot;padding-left: 35px&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sunflower Spectacular&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Fall Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;New Arrivals&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Same-Day Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;Sympathy Flowers&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&quot;&gt;International Delivery&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-6 with-border-left&quot;&gt;\r\n          &lt;div style=&quot;padding: 8px 0px 0px 24px&quot;&gt;\r\n               &lt;p style=&quot;font-size: 23px;line-height: 25px;font-weight: 600;margin: 0px;padding: 0px 0px 9px 0px&quot;&gt;Choose your&lt;br&gt;favotite flowers&lt;/p&gt;\r\n               &lt;a href=&quot;#&quot; class=&quot;button btn-default&quot; style=&quot;font-size: 10px !important;padding: 5px 20px 4px 20px !important;&quot;&gt;More details&lt;/a&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}'),
     (21, 1, 16, 5, '', 'a:2:{i:1;s:13:\"Submenu price\";i:" . $language_id . ";s:13:\"Submenu price\";}', '', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', 'a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}', '', '', '', 0, 0, 0, 0, '100%', 0, '', 'top left', 'no-repeat', 12, 0, 'a:4:{s:4:\"html\";a:1:{s:4:\"text\";a:2:{i:1;s:3834:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[0,30]&quot;&gt;Under $30&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[30,50]&quot;&gt;$30 - $49.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[50,80]&quot;&gt;$50 - $79.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[80,100]&quot;&gt;$80 - $99.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[100,10000]&quot;&gt;$100+&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-5 with-border-left&quot;&gt;\r\n          &lt;div class=&quot;flower-product product clearfix&quot;&gt;\r\n               &lt;div class=&quot;image&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;&lt;img src=&quot;image/catalog/flowers/product.png&quot; alt=&quot;Product&quot;&gt;&lt;/a&gt;&lt;/div&gt;\r\n               &lt;div class=&quot;right&quot;&gt;\r\n                    &lt;div class=&quot;name&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;Flowers Summer sun&lt;/a&gt;&lt;/div&gt;\r\n                    &lt;div class=&quot;price&quot;&gt;$602.00&lt;/div&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a onclick=&quot;cart.add(''43'');&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Add to Cart&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li class=&quot;quickview&quot;&gt;&lt;a href=&quot;index.php?route=product/quickview&amp;product_id=43&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Quickview&quot;&gt;&lt;i class=&quot;fa fa-search&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-5 with-border-left&quot;&gt;\r\n          &lt;div class=&quot;flower-product product clearfix&quot;&gt;\r\n               &lt;div class=&quot;image&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;&lt;img src=&quot;image/catalog/flowers/product.png&quot; alt=&quot;Product&quot;&gt;&lt;/a&gt;&lt;/div&gt;\r\n               &lt;div class=&quot;right&quot;&gt;\r\n                    &lt;div class=&quot;name&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;Flowers Summer sun&lt;/a&gt;&lt;/div&gt;\r\n                    &lt;div class=&quot;price&quot;&gt;$602.00&lt;/div&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a onclick=&quot;cart.add(''43'');&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Add to Cart&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li class=&quot;quickview&quot;&gt;&lt;a href=&quot;index.php?route=product/quickview&amp;product_id=43&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Quickview&quot;&gt;&lt;i class=&quot;fa fa-search&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";i:" . $language_id . ";s:3834:\"&lt;div class=&quot;row&quot;&gt;\r\n     &lt;div class=&quot;col-sm-2&quot;&gt;\r\n          &lt;div class=&quot;hover-menu flowers-menu&quot;&gt;\r\n               &lt;div class=&quot;menu clearfix&quot;&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[0,30]&quot;&gt;Under $30&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[30,50]&quot;&gt;$30 - $49.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[50,80]&quot;&gt;$50 - $79.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[80,100]&quot;&gt;$80 - $99.99&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li&gt;&lt;a href=&quot;index.php?route=product/category&amp;path=20&amp;mfp=price[100,10000]&quot;&gt;$100+&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-5 with-border-left&quot;&gt;\r\n          &lt;div class=&quot;flower-product product clearfix&quot;&gt;\r\n               &lt;div class=&quot;image&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;&lt;img src=&quot;image/catalog/flowers/product.png&quot; alt=&quot;Product&quot;&gt;&lt;/a&gt;&lt;/div&gt;\r\n               &lt;div class=&quot;right&quot;&gt;\r\n                    &lt;div class=&quot;name&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;Flowers Summer sun&lt;/a&gt;&lt;/div&gt;\r\n                    &lt;div class=&quot;price&quot;&gt;$602.00&lt;/div&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a onclick=&quot;cart.add(''43'');&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Add to Cart&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li class=&quot;quickview&quot;&gt;&lt;a href=&quot;index.php?route=product/quickview&amp;product_id=43&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Quickview&quot;&gt;&lt;i class=&quot;fa fa-search&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n     \r\n     &lt;div class=&quot;col-sm-5 with-border-left&quot;&gt;\r\n          &lt;div class=&quot;flower-product product clearfix&quot;&gt;\r\n               &lt;div class=&quot;image&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;&lt;img src=&quot;image/catalog/flowers/product.png&quot; alt=&quot;Product&quot;&gt;&lt;/a&gt;&lt;/div&gt;\r\n               &lt;div class=&quot;right&quot;&gt;\r\n                    &lt;div class=&quot;name&quot;&gt;&lt;a href=&quot;index.php?route=product/product&amp;product_id=43&quot;&gt;Flowers Summer sun&lt;/a&gt;&lt;/div&gt;\r\n                    &lt;div class=&quot;price&quot;&gt;$602.00&lt;/div&gt;\r\n                    &lt;ul&gt;\r\n                         &lt;li&gt;&lt;a onclick=&quot;cart.add(''43'');&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Add to Cart&quot;&gt;&lt;i class=&quot;fa fa-shopping-cart&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                         &lt;li class=&quot;quickview&quot;&gt;&lt;a href=&quot;index.php?route=product/quickview&amp;product_id=43&quot; data-toggle=&quot;tooltip&quot; data-original-title=&quot;Quickview&quot;&gt;&lt;i class=&quot;fa fa-search&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;\r\n                    &lt;/ul&gt;\r\n               &lt;/div&gt;\r\n          &lt;/div&gt;\r\n     &lt;/div&gt;\r\n&lt;/div&gt;\";}}s:7:\"product\";a:4:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:0:\"\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";}s:10:\"categories\";a:7:{s:10:\"categories\";a:0:{}s:7:\"columns\";s:1:\"1\";s:7:\"submenu\";s:1:\"1\";s:14:\"image_position\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:15:\"submenu_columns\";s:1:\"1\";}s:8:\"products\";a:5:{s:7:\"heading\";a:2:{i:1;s:0:\"\";i:" . $language_id . ";s:0:\"\";}s:8:\"products\";a:0:{}s:7:\"columns\";s:1:\"1\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";}}')
");

?>