/* ============================================================
   OpenCart 3.0.5.0 - Product Showcase + Inquiry System
   Custom Stylesheet (Inquiry Mode)
   Color Scheme: Blue(#1a73e8) + Orange(#ff6d00) + Gray(#333/#f5f5f5)
   Font: Open Sans (body) + Montserrat (headings)
   Based on original stylesheet.css, modified for inquiry mode
   ============================================================ */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* === Base Typography (original: 12px/#666, new: 14px/#333) === */
body {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	font-weight: 400;
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
	width: 100%;
	background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	color: #1a1a1a;
	font-weight: 600;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults (original sizes kept, h5/h6 adjusted) */
h1 {
	font-size: 33px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 11px;
}
/* Links (original: #23a1d1, new: #1a73e8) */
a {
	color: #1a73e8;
}
a:hover {
	color: #1557b0;
	text-decoration: none;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 13px;
	font-weight: 500;
	color: #555;
}
/* Form controls (original: 12px, new: 13px + focus ring) */
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 13px;
	border-color: #ddd;
	transition: border-color 0.3s;
}
select.form-control:focus, textarea.form-control:focus, input[type="text"].form-control:focus, input[type="password"].form-control:focus, input[type="email"].form-control:focus, input[type="tel"].form-control:focus, input[type="number"].form-control:focus {
	border-color: #1a73e8;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 13px;
}
.input-group .input-group-addon {
	font-size: 13px;
	height: 34px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #ff6d00;
	font-weight: bold;
}
/* Gradient to all drop down menus (original: #229ac8 gradient, new: flat #1a73e8) */
.dropdown-menu li > a:hover {
	text-decoration: none;
	color: #ffffff;
	background-color: #1a73e8;
	background-image: none;
}

/* ============================================================
   TOP BAR (original: #EEEEEE, new: #1a73e8 blue)
   ============================================================ */
#top {
	background-color: #1a73e8;
	border-bottom: none;
	padding: 8px 0;
	margin: 0;
	min-height: 36px;
}
#top .container {
	padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
	text-align: left;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
	text-shadow: none;
	color: #ffffff;
	background-color: #1557b0;
	background-image: none;
}
#top .btn-link, #top-links li, #top-links a {
	color: rgba(255,255,255,0.9);
	text-shadow: none;
	text-decoration: none;
}
#top .btn-link:hover, #top-links a:hover {
	color: #ffffff;
}
#top-links .dropdown-menu a {
	text-shadow: none;
}
#top-links .dropdown-menu a:hover {
	color: #FFF;
}
#top .btn-link strong {
	font-size: 14px;
	line-height: 14px;
}
#top-links {
	padding-top: 4px;
}
#top-links a + a {
	margin-left: 15px;
}

/* ============================================================
   LOGO (original: margin-bottom 10px, new: 0)
   ============================================================ */
#logo {
	margin: 0;
}

/* ============================================================
   SEARCH (original: plain, new: rounded + orange button)
   ============================================================ */
#search {
	margin-bottom: 0;
	padding-top: 12px;
}
#search .input-lg {
	height: 42px;
	line-height: 20px;
	padding: 0 15px;
	border-radius: 21px;
	border: 2px solid #e0e0e0;
	font-size: 14px;
}
#search .input-lg:focus {
	border-color: #1a73e8;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
#search .btn-lg {
	font-size: 15px;
	line-height: 18px;
	padding: 10px 25px;
	text-shadow: none;
	background-color: #ff6d00;
	border-color: #ff6d00;
	border-radius: 21px;
	color: #fff;
}
#search .btn-lg:hover {
	background-color: #e65100;
	border-color: #e65100;
}

/* ============================================================
   HEADER (new: white bg + blue bottom border)
   ============================================================ */
header {
	background: #ffffff;
	border-bottom: 3px solid #1a73e8;
	padding: 10px 0;
}

/* ============================================================
   CART / INQUIRY CART (original: plain, new: rounded pill + orange accent)
   ============================================================ */
#cart {
	margin-bottom: 0;
	padding-top: 15px;
}
#cart > .btn {
	font-size: 14px;
	line-height: 18px;
	color: #333;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 21px;
	padding: 8px 16px;
}
#cart > .btn:hover {
	color: #1a73e8;
	border-color: #1a73e8;
}
#cart.open > .btn {
	background-color: #f5f5f5;
	border-color: #1a73e8;
	color: #1a73e8;
	box-shadow: none;
	text-shadow: none;
}
#cart .dropdown-menu {
	background: #ffffff;
	z-index: 1001;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	border: 1px solid #e0e0e0;
}
#cart .dropdown-menu {
	min-width: 100%;
	overflow-y: auto;
	max-height: 400px;
	scrollbar-width: thin;
	overflow-x: hidden;
}
@media (max-width: 478px) {
	#cart .dropdown-menu {
		width: 100%;
	}
}
#cart .dropdown-menu table {
	margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
	min-width: 380px;
	padding: 15px;
}
@media (max-width: 478px) {
	#cart .dropdown-menu li > div {
		min-width: 100%;
	}
}
#cart .dropdown-menu li p {
	margin: 20px 0;
}

/* ============================================================
   MENU (original: #229ac8 gradient, new: flat #1a73e8)
   ============================================================ */
#menu {
	background-color: #1a73e8;
	background-image: none;
	border-color: #1557b0;
	min-height: 44px;
	border-radius: 0;
}
#menu .nav > li > a {
	color: #ffffff;
	text-shadow: none;
	padding: 12px 18px;
	min-height: 20px;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s;
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
	background-color: rgba(255,255,255,0.15);
}
#menu .dropdown-menu {
	padding-bottom: 0;
}
#menu .dropdown-inner {
	display: table;
}
#menu .dropdown-inner ul {
	display: table-cell;
}
#menu .dropdown-inner a {
	min-width: 180px;
	display: block;
	padding: 8px 20px;
	clear: both;
	line-height: 22px;
	color: #333333;
	font-size: 13px;
	transition: all 0.2s;
}
#menu .dropdown-inner li a:hover {
	color: #ffffff;
	background-color: #1a73e8;
	padding-left: 24px;
}
#menu .see-all {
	display: block;
	margin-top: 0.5em;
	border-top: 1px solid #eee;
	padding: 10px 20px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 3px 3px;
	font-size: 13px;
	font-weight: 600;
	color: #1a73e8;
	background: #f8f9fa;
}
#menu .see-all:hover, #menu .see-all:focus {
	text-decoration: none;
	color: #ffffff;
	background-color: #1a73e8;
	background-image: none;
}
#menu #category {
	float: left;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 44px;
	color: #fff;
	text-shadow: none;
}
#menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	color: #FFF;
	padding: 4px 18px;
	float: right;
	background-color: transparent;
	background-image: none;
	border-color: transparent;
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
	color: #ffffff;
	background-color: rgba(255,255,255,0.15);
}
@media (min-width: 768px) {
	#menu .dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 767px) {
	#menu {
		border-radius: 0;
	}
	#menu div.dropdown-inner > ul.list-unstyled {
		display: block;
	}
	#menu div.dropdown-menu {
		margin-left: 0 !important;
		padding-bottom: 10px;
		background-color: rgba(255,255,255,0.1);
	}
	#menu .dropdown-inner {
		display: block;
	}
	#menu .dropdown-inner a {
		width: 100%;
		color: #fff;
	}
	#menu .dropdown-menu a:hover,
	#menu .dropdown-menu ul li a:hover {
		background: rgba(255,255,255,0.15);
	}
	#menu .see-all {
		margin-top: 0;
		border: none;
		border-radius: 0;
		color: #fff;
		background: rgba(255,255,255,0.1);
	}
}

/* ============================================================
   CONTENT (original: 13px, new: 14px + better line-height)
   ============================================================ */
#content {
	min-height: 600px;
}
#product-category #content, #product-product #tab-description, #information-information #content {
	font-size: 14px;
	line-height: 1.7;
}

/* ============================================================
   FOOTER (original: #303030, new: #1a1a2e + Montserrat h5)
   ============================================================ */
footer {
	margin-top: 40px;
	padding-top: 40px;
	padding-bottom: 30px;
	background-color: #1a1a2e;
	border-top: none;
	color: #e2e2e2;
}
footer hr {
	border-top: none;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer a {
	color: #ccc;
	transition: color 0.3s;
}
footer a:hover {
	color: #ffffff;
}
footer h5 {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}
footer p {
	font-size: 13px;
	color: #999;
}

/* ============================================================
   ALERT (original: 8px padding, new: 12px + rounded)
   ============================================================ */
.alert {
	padding: 12px 18px;
	border-radius: 6px;
	font-size: 14px;
}
.alert > .close {
	position: relative;
	top: -2px;
	right: 0px;
	color: inherit;
}

/* ============================================================
   BREADCRUMB (original: border box, new: clean underline)
   ============================================================ */
.breadcrumb {
	margin: 0 0 20px 0;
	padding: 10px 0;
	border: none;
	background: none;
	border-bottom: 1px solid #eee;
}
.breadcrumb i {
	font-size: 14px;
}
.breadcrumb > li {
	text-shadow: none;
	padding: 0 15px;
	position: relative;
	white-space: nowrap;
	font-size: 13px;
	color: #888;
}
.breadcrumb > li a {
	color: #1a73e8;
}
.breadcrumb > li + li:before {
	content: '';
	padding: 0;
}
.breadcrumb > li:after {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	right: -5px;
	width: 22px;
	height: 22px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.pagination {
	margin: 0;
}

/* ============================================================
   BUTTONS (original: gradient 3D, new: flat modern)
   ============================================================ */
.buttons {
	margin: 1em 0;
}
.btn {
	padding: 8px 16px;
	font-size: 13px;
	border: none;
	border-radius: 6px;
	box-shadow: none;
	transition: all 0.3s;
	font-weight: 500;
}
.btn-xs {
	font-size: 11px;
}
.btn-sm {
	font-size: 12px;
}
.btn-lg {
	padding: 12px 24px;
	font-size: 16px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 13px;
}
.btn-group > .btn-xs {
	font-size: 11px;
}
.btn-group > .btn-sm {
	font-size: 12px;
}
.btn-group > .btn-lg {
	font-size: 16px;
}
/* Default (original: gray gradient, new: flat gray) */
.btn-default {
	color: #555;
	text-shadow: none;
	background-color: #f5f5f5;
	background-image: none;
	border: 1px solid #e0e0e0;
}
.btn-default:hover {
	background-color: #e8e8e8;
}
/* Primary (original: #229ac8, new: #ff6d00 orange CTA) */
.btn-primary {
	color: #ffffff;
	text-shadow: none;
	background-color: #ff6d00;
	background-image: none;
	border-color: #ff6d00;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
	background-color: #e65100;
	border-color: #e65100;
}
/* Warning (original: #faa732, new: #ff8f00) */
.btn-warning {
	color: #ffffff;
	text-shadow: none;
	background-color: #ff8f00;
	background-image: none;
	border-color: #ff8f00;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	background-color: #e67e00;
}
/* Danger (original: #da4f49, new: #d32f2f) */
.btn-danger {
	color: #ffffff;
	text-shadow: none;
	background-color: #d32f2f;
	background-image: none;
	border-color: #d32f2f;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	background-color: #b71c1c;
}
/* Success (original: #5bb75b, new: #0d904f) */
.btn-success {
	color: #ffffff;
	text-shadow: none;
	background-color: #0d904f;
	background-image: none;
	border-color: #0d904f;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	background-color: #0a7a42;
}
/* Info (original: #df5c39 orange, new: #1a73e8 blue for secondary) */
.btn-info {
	color: #ffffff;
	text-shadow: none;
	background-color: #1a73e8;
	background-image: none;
	border-color: #1a73e8;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-color: #1557b0;
	background-image: none;
}
/* Link (original: #23A1D1, new: #1a73e8) */
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #1a73e8;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
/* Inverse (original: #363636, new: #333) */
.btn-inverse {
	color: #ffffff;
	text-shadow: none;
	background-color: #333;
	background-image: none;
	border-color: #333;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #1a1a1a;
}

/* ============================================================
   LIST GROUP (original: #DDDDDD/#888, new: #e8e8e8/#666 + blue active)
   ============================================================ */
.list-group a {
	border: 1px solid #e8e8e8;
	color: #666;
	padding: 10px 15px;
	font-size: 13px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #1a73e8;
	background: #f5f5f5;
	border-color: #1a73e8;
	text-shadow: none;
}

/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}

/* ============================================================
   PRODUCT LISTING (original: plain, new: rounded + hover animation + full-width inquiry button)
   ============================================================ */
.product-thumb {
	border: 1px solid #e8e8e8;
	margin-bottom: 25px;
	overflow: auto;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.product-thumb:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.product-thumb .image {
	text-align: center;
}
.product-thumb .image a {
	display: block;
}
.product-thumb .image a:hover {
	opacity: 0.9;
}
.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .image {
	float: left;
	padding: 0 15px;
}
}
.product-thumb h4 {
	font-weight: 600;
	font-size: 14px;
}
.product-thumb .caption {
	padding: 15px 20px;
	min-height: 160px;
}
.product-list .product-thumb .caption {
	margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 190px;
	padding: 15px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
	min-height: 0;
	margin-left: 0;
	padding: 15px;
}
.product-grid .product-thumb .caption {
	min-height: 0;
}
}
.product-thumb .rating {
	padding-bottom: 8px;
}
.rating .fa-stack {
	font-size: 8px;
}
.rating .fa-star-o {
	color: #ddd;
	font-size: 14px;
}
.rating .fa-star {
	color: #ffc107;
	font-size: 14px;
}
.rating .fa-star + .fa-star-o {
	color: #e69500;
}
h2.price {
	margin: 0;
}
.product-thumb .price {
	color: #444;
}
.product-thumb .price-new {
	font-weight: 600;
}
.product-thumb .price-old {
	color: #999;
	text-decoration: line-through;
	margin-left: 10px;
}
.product-thumb .price-tax {
	color: #999;
	font-size: 12px;
	display: block;
}
/* Product button group (original: 60%/20% split, new: full-width orange inquiry button) */
.product-thumb .button-group {
	border-top: 1px solid #e8e8e8;
	background-color: #fafafa;
	overflow: auto;
}
.product-list .product-thumb .button-group {
	border-left: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
	.product-list .product-thumb .button-group {
		border-left: none;
	}
}
.product-thumb .button-group button {
	width: 100%;
	border: none;
	display: inline-block;
	float: none;
	background-color: #ff6d00;
	color: #ffffff;
	line-height: 40px;
	font-weight: 600;
	text-align: center;
	text-transform: none;
	font-size: 14px;
	border-radius: 0;
	padding: 0;
}
.product-thumb .button-group button + button {
	width: 100%;
	border-left: none;
}
.product-thumb .button-group button:hover {
	background-color: #e65100;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 100%;
	}
}
.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails > li {
	margin-left: 20px;
}
.thumbnails {
	margin-left: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 15px;
	padding: 5px;
	display: block;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
}
.image-additional {
	max-width: 80px;
}
.thumbnails .image-additional {
	float: left;
	margin-left: 15px;
}

/* Grid layout clearing (unchanged from original) */
@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed column left + content + right (unchanged from original) */
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }

	#column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }

	#column-left + #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }
}

#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

/* ============================================================
   PANELS (original: bootstrap default, new: clean modern)
   ============================================================ */
.panel {
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
	border: none;
	margin-bottom: 20px;
}
.panel-default {
	border: 1px solid #e8e8e8;
}
.panel-heading {
	background: #ffffff;
	border-bottom: 2px solid #1a73e8;
	border-radius: 8px 8px 0 0;
	padding: 12px 20px;
}
.panel-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}
.panel-body {
	padding: 20px;
	font-size: 14px;
	line-height: 1.6;
}

/* ============================================================
   QUICK QUOTE FLOATING BUTTON (new)
   ============================================================ */
.quick-quote-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #ff6d00;
	color: #ffffff;
	padding: 14px 24px;
	border-radius: 50px;
	box-shadow: 0 4px 16px rgba(255, 109, 0, 0.4);
	z-index: 999;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}
.quick-quote-btn:hover {
	background: #e65100;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 109, 0, 0.5);
	text-decoration: none;
}
.quick-quote-btn i {
	font-size: 18px;
}

/* ============================================================
   MADE IN CHINA BADGE (new)
   ============================================================ */
.made-in-china {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: #ff6d00;
	font-weight: 600;
	margin-left: 10px;
	vertical-align: middle;
	letter-spacing: 0.3px;
}

/* ============================================================
   MOBILE RESPONSIVE (new additions)
   ============================================================ */
@media (max-width: 768px) {
	h1 { font-size: 24px; }
	h2 { font-size: 20px; }
	h3 { font-size: 16px; }
	body { font-size: 13px; }
	.quick-quote-btn {
		bottom: 20px;
		right: 20px;
		padding: 12px 18px;
		font-size: 13px;
	}
	#search .btn-lg {
		padding: 8px 18px;
		font-size: 14px;
	}
}

/* ============================================================
   RTL SUPPORT (unchanged from original)
   ============================================================ */
html[dir=rtl] .checkbox input[type="checkbox"],
html[dir=rtl] .checkbox-inline input[type="checkbox"],
html[dir=rtl] .radio input[type="radio"],
html[dir=rtl] .radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-right: -20px;
    margin-left: unset;
}
html[dir=rtl] .input-group-btn:last-child > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
html[dir=rtl] .input-group .form-control:first-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}
html[dir=rtl] .container .row:first-child  .col-sm-4, html[dir=rtl] .container .row:first-child  .col-sm-5 {
  float: right;
}
html[dir=rtl] #cart .dropdown-menu {
  left: 0;
  right: auto;
}
html[dir=rtl] .breadcrumb > li::after {
  top: -3px;
  left: -5px;
  width: 26px;
  height: 26px;
  border-left: 1px solid #DDD;
  border-top: 1px solid #DDD;
  right: unset;
  border-right: unset;
  border-bottom: unset;
}
@media (min-width: 768px) {
    html[dir=rtl] .navbar-nav {
        float: right;
        margin: 0;
    }
    html[dir=rtl] .navbar-nav > li {
        float: right;
    }
}
