/*
Theme Name: SmoresActive Theme
Theme URI: https://smoresactive.com/
Author: SmoresActive
Description: Custom Pinegrow WooCommerce theme - Black & White Luxury
Version: 1.0
Text Domain: smoresactive_theme
*/

/* Premium product styling — drop-in */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

:root{
  --black:#0b0b0b; --white:#fff; --muted:#7a7a7a; --border:#e9e9e9;
  --shadow:rgba(11,11,11,0.06); --accent:#000;
  --max-width:1300px;
  --gap-lg:48px; --gap-md:28px; --gap-sm:12px;
}

/* Base */
*{box-sizing:border-box} body{font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:var(--black);background:var(--white);margin:0;padding:0;-webkit-font-smoothing:antialiased}
.container{max-width:var(--max-width);margin:0 auto;padding:0 20px}

/* SINGLE PRODUCT CONTAINER */
.single-product-wrapper, .woocommerce .single-product .product{
  max-width:var(--max-width);
  margin:48px auto;
  padding:0 20px;
}

/* grid: gallery + right column */
.single-product-wrapper .product{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:var(--gap-lg);
  align-items:start;
}

/* Gallery frame */
.woocommerce-product-gallery, .product-gallery{
  border-radius:14px; padding:18px; background:var(--white);
  border:1px solid var(--border); box-shadow:0 8px 30px var(--shadow); overflow:hidden;
}

/* main image */
.woocommerce-product-gallery__image img, .product-gallery img{
  width:100%; height:auto; display:block; object-fit:cover; border-radius:10px;
  transition:transform .45s cubic-bezier(.2,.9,.2,1);
}
.woocommerce-product-gallery__image:hover img, .product-gallery:hover img{ transform:scale(1.03) }
#tab-description>h2{ font-weight:bold; text-transform:uppercase}


#tab-description>ul{ list-style-type: disc !important;}
h2{ font-weight:bold !important; text-transform:uppercase; margin-bottom:10px !important;}
/* thumbnails */
.flex-control-thumbs{ display:flex; gap:12px; margin-top:16px; flex-wrap:wrap }
.flex-control-thumbs li{ width:60px; height:60px; border-radius:8px; overflow:hidden; border:1px solid transparent; transition:all .25s }
.flex-control-thumbs li img{ width:100%; height:100%; object-fit:cover }
.flex-control-thumbs li:hover, .flex-control-thumbs li.selected{ transform:translateY(-4px); box-shadow:0 6px 20px rgba(0,0,0,.06); border-color:var(--border) }

/* sale badge */
.woocommerce span.onsale{ position:absolute; top:22px; left:22px; background:var(--accent); color:var(--white); padding:6px 10px; font-size:12px; letter-spacing:1.6px; text-transform:uppercase; border-radius:2px; box-shadow:0 6px 18px rgba(0,0,0,.12); z-index:20 }

/* Summary column */
.product-summary{ display:flex; flex-direction:column; gap:var(--gap-sm) }
.product-summary .product_title, .product-summary h1{ font-family:'Playfair Display', serif; font-size:34px; margin:6px 0 8px; line-height:1.05 }
.woocommerce-product-rating{ color:var(--muted); margin-bottom:6px }
.product-summary .price, .woocommerce-Price-amount{ /*font-size:22px;*/ font-weight:700; margin-bottom:var(--gap-md); display:block }
.woocommerce-product-details__short-description{ font-size:15px; color:#333; margin-bottom:var(--gap-md); line-height:1.7 }

/* variations + quantity */
.variations, .variations_form { margin-bottom:var(--gap-md) }
.single-product .cart .quantity{ display:inline-block; margin-right:12px }

/* add to cart */
.single_add_to_cart_button{ background:var(--black); color:var(--white); border:none; padding:14px 26px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; border-radius:6px; box-shadow:0 8px 22px rgba(11,11,11,.08); cursor:pointer; transition:transform .18s, box-shadow .18s, background .18s }
.single_add_to_cart_button:hover{ transform:translateY(-3px); box-shadow:0 14px 34px rgba(11,11,11,.10); background:#111 }

/* meta */
.product_meta{ margin-top:18px; font-size:13px; color:var(--muted) }

/* tabs & panels */
.woocommerce-tabs{ margin-top:80px; border-top:1px solid var(--border); padding-top:28px }
.woocommerce-tabs ul.tabs{ display:flex; gap:28px; border-bottom:1px solid transparent; margin-bottom:22px }
.woocommerce-tabs ul.tabs li a{ padding-bottom:8px }
.woocommerce-tabs ul.tabs li.active a{ border-bottom:2px solid var(--accent) }

/* related products */
.related .products{ /*display:grid !important;*/ grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:28px; margin-top:18px }
.related .products li.product{ background:var(--white); border:1px solid var(--border); padding:18px; border-radius:10px; text-align:center; transition:transform .25s, box-shadow .25s }
.related .products li.product:hover{ transform:translateY(-8px); box-shadow:0 18px 40px rgba(0,0,0,.06) }
.related .products li.product img{ border-radius:8px; width:100%; height:220px; object-fit:cover; margin-bottom:14px }
.related .woocommerce-loop-product__title{ font-family:'Playfair Display', serif; font-size:16px; margin-bottom:10px }

/* responsive */
@media (max-width:1100px){ .single-product-wrapper .product{ grid-template-columns:1fr 360px;} }
@media (max-width:900px){ .single-product-wrapper .product{ grid-template-columns:1fr; gap:28px } .product-summary{ order:2 } .product-gallery{ order:1 } .product-summary .product_title{ font-size:28px } .related .products li.product img{ height:180px } }

/* tiny refinements */
.price del{ color:var(--muted); margin-right:8px; font-weight:400 }
.woocommerce-breadcrumb{ font-size:13px; margin-bottom:18px; color:var(--muted) }
.related ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

body,
input,
textarea,
select,
.quattrocento-sans-font {
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.interested-section .interested-title,
.design-section .design-heading,
.body-title,
.crafted-section .crafted-title,
.partner-section .partner-title,
.carousel-main .carousel-caption h4,
.eb-garamond-font {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
 #sidebar{display:none !important}
 .woocommerce-breadcrumb{ margin:3% !important}
 #main{ margin:3% !important}
 .related products{margin-top: 11% !important;}
 section.related products{margin-top: 11% !important;}
/* Custom Classes */
.bg-dark-blue { background-color: #336699 !important; }
.text-red { color:#333 !important; font-size:32px !important }

.btn-dark-danger { background-color: #9C1137 !important; border-color: #9C1137 !important; color: #fff !important;  }
.btn-dark-danger:hover,
.btn-dark-danger:focus { background-color: #fff !important; border-color: #9C1137 !important; color: #9C1137 !important; }

.btn-dark-brown { background-color: #987455 !important; border-color: #987455 !important; color: #fff !important; }
.btn-dark-brown:hover,
.btn-dark-brown:focus { background-color: #fff !important; border-color: #987455 !important; color: #987455 !important; }

.btn-outline-dark-blue { border-color: #336699 !important; color: #336699 !important; }
.btn-outline-dark-blue:hover,
.btn-outline-dark-blue:focus { border-color: #336699 !important; color: #fff !important; background-color: #336699 !important; }
.dropdown-hover-all .dropdown-menu,
.dropdown-hover > .dropdown-menu.dropend { margin-left: -1px !important }

/* Custom CSS */
.stuck { position: fixed; top: 0; left: 0; right: 0; z-index: 10; }

.header-main { position: relative; z-index: 50; }
.pre-header { background-color: #9C1137; color: #fff; }
.post-header { background-color: #fff; }
.header-navs { }
.header-navs.nav { font-size: 0.9rem/*1.0rem*/; text-transform: uppercase; }
.wp-block-firebox {
  
    max-width: 97% !important;
	text-align:center !important;
}
.header-navs.nav > li { position: relative; }
.header-navs.nav > li > a { color: #000; font-weight: 400; position: relative; padding: 1.6rem 0.7rem; text-decoration:none }
.header-navs.nav > li > a:before { content: ""; position: absolute; bottom: 1.4rem; background-color: #9C1137; left: 50%; right: 50%; height: 0.15rem; transition: all 0.25s ease-in-out; }
.header-navs.nav > li > a.active { color: #9C1137; font-weight: 900; }
.header-navs.nav > li > a.active:before { /*content:""; position:absolute; bottom:-0.4rem; height:0.15rem;*/ background-color: #9C1137; left: 1rem; right: 1rem; }
.header-navs.nav > li > a:hover,
.header-navs.nav > li > a:focus { color: #9C1137; }
.header-navs.nav > li > a:hover:before { left: 1rem; right: 1rem; }

.header-navs.nav .nav-link:focus-visible,
.header-navs.nav .dropdown-item:focus-visible { box-shadow: none; outline: none; }
.header-navs.nav .dropdown-toggle::after { /*margin-left: 0rem;*/ }
.dropdown-menu { border: 0; padding: 0; border-radius: 0; margin-top: 0rem !important; left: 1.0rem !important; }
.dropdown-menu .dropdown-item { padding: 0.5rem 1rem; color:#fff; }

.dropdown-menu > li:nth-child(-n+6) > .dropdown-item { color:#333; }
.dropdown-menu > li:nth-child(1) > .dropdown-item { background-color: #BA5873; color: #fff; }
.dropdown-menu > li:nth-child(2) > .dropdown-item { background-color: #B0415F; color: #fff; }
.dropdown-menu > li:nth-child(3) > .dropdown-item { background-color: #A6294B; color: #fff; }
.dropdown-menu > li:nth-child(4) > .dropdown-item { background-color: #9C1137; color: #fff; }
.dropdown-menu > li:nth-child(5) > .dropdown-item { background-color: #8C0F32; color: #fff; }
.dropdown-menu > li:nth-child(6) > .dropdown-item { background-color: #7D0E2C; color: #fff; }
.dropdown-menu > li:nth-child(7) > .dropdown-item { background-color: #6D0C27; color: #fff; }
.dropdown-menu > li:nth-child(8) > .dropdown-item { background-color: #5E0A21; color: #fff; }
.dropdown-menu > li:nth-child(9) > .dropdown-item { background-color: #4E091C; color: #fff; }
.dropdown-menu > li:nth-child(10) > .dropdown-item { background-color: #3E0716; color: #fff; }
.nav-item > .dropdown-menu { }

.logo { padding: 0.3rem 0.6rem; }
.logo img { max-height: 120px; }

.header-icons { font-weight: 600; }
.header-icons .nav { }
.header-icons .nav > li > a { color: inherit; padding: 0.3rem 0.6rem; color: #9C1137; }
.header-icons .nav > li > a:hover,
.header-icons .nav > li > a:focus { color: #ccc; }
.header-icons .nav > li > a > i { font-size: 1.35rem; vertical-align: middle; }
.header-icons .nav > li > a > .badge { font-size: 0.6rem; }

.carousel-main .carousel-control { filter: brightness(0) saturate(100%) invert(15%) sepia(85%) saturate(2856%) hue-rotate(328deg) brightness(84%) contrast(101%); }
.carousel-main .carousel-indicators { margin: 0; bottom: 1.5rem; align-items: center; }
.carousel-main .carousel-indicators button { opacity:1; background-color: #fff; border: 2px solid #9C1137; width: 24px; height: 24px; border-radius: 50%; }
.carousel-main .carousel-indicators button.active { border-color: #9C1137; background-color: #9C1137; width: 32px; height: 32px; }
.carousel-main .carousel-img { background-repeat:no-repeat; background-size: cover; background-position:center; height: 100%; }
.carousel-main .carousel-caption { position: static; padding: 8rem 1.5rem; background-color: rgba(255, 255, 255, 0.8); color: #000; font-size: 1.2rem; }
.carousel-main .carousel-caption h4 { font-size: 2.2rem; }

.body-title { color: #000; margin-bottom: 3.5rem; }
.body-title h1 { font-size: 2.8rem; font-weight: 400; }
.body-title h4 { font-size: 1.5rem; }
.body-title h3 { font-size: 2.1rem; }
.body-title h5 { font-size: 1.2rem; color: #737373; }

.partner-section { }
.partner-section .body-content { }
.partner-section .partner-strip { background-color: #F6F3EE; height: 2rem; }
.partner-section .partner-strip.one { }
.partner-section .partner-strip.two { }
.partner-section .partner-img { background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:125%; clip-path: polygon(50% 1.25%, 26.32% 5.59%, 11.27% 15.52%, 0% 29.6%, 0% 100%, 100% 100%, 100% 29.6%, 88.12% 15.52%, 72.61% 5.59%); }
.partner-section .partner-contain { }
.partner-section .partner-subtitle { }
.partner-section .partner-title { }
.partner-section .partner-card { border: 2px solid rgba(156, 17, 55, 0.2); font-size: 0.9rem; line-height: 1; }
.partner-section .partner-icon { font-size: 2.0rem; color: #9C1137; line-height: 1; }

.crafted-section { background-color: rgba(156, 17, 55, 0.1); }
.crafted-section .body-content { }
.crafted-section .crafted-contain { font-size: 1.4rem; }
.crafted-section .crafted-title { color: #9C1137; font-size: 3.8rem; }
.crafted-section .crafted-img { background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:100%; clip-path: polygon(100% 100%, 0% 100%, 0% 50%, 5.08% 31.58%, 16.21% 16.04%, 29.25% 6.25%, 50.25% 0%, 100% 0%); }

.inspire-section { }
.inspire-section .body-content { }
.inspire-section .inspire-fig { }
.inspire-section .inspire-fig a { display: block; color: #000; text-decoration: none; position: relative; }
.inspire-section .inspire-fig a span { display: block; }
.inspire-section .inspire-img { background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:100%; }
.inspire-section .inspire-fig .inspire-title { padding: 0.6rem 1.2rem; position: absolute; bottom: 0; left: 0; background-color: rgba(156, 17, 55, 0.8); color: #fff; font-size: 0.95rem; font-weight: 400; text-align: center; transition: all 0.3s ease-in-out; }

.inspire-section .inspire-item { font-size: 1.2rem; font-weight: 400; }
.inspire-section .inspire-item a { display: table; color: #000; text-decoration: none; position: relative; }
.inspire-section .inspire-item a span { display: block; }
.inspire-section .inspire-item .inspire-img { display: table-cell; width: 14rem; padding-bottom: 0; }
.inspire-section .inspire-content { display: table-cell; padding-left: 2rem; padding-bottom: 2rem; }
.inspire-section .inspire-strip { height: 3rem; position: relative; margin-bottom: 3rem; }
.inspire-section .inspire-strip:after { content:""; background-color: #F6F3EE; height: 100%; position:absolute; top:0; left:30%; right:0; }
.inspire-section .inspire-post .inspire-strip { margin-top: 3rem; margin-bottom: 0; }
.inspire-section .inspire-post .inspire-strip:after { left: 0; right: 25%; }
.inspire-section .inspire-post .inspire-content { padding-top: 2rem; padding-bottom: 0; padding-left: 0; padding-right: 2rem; }

.trending-section { }
.trending-section .body-content { }
.trending-section .trending-item { }
.trending-section .trending-item a { display: block; color: #000; text-decoration: none; position: relative; }
.trending-section .trending-item a span { display: block; }
.trending-section .trending-img { background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:125%; }
.trending-section .trending-title { padding: 0.6rem 1.2rem; position: absolute; bottom: 1rem; left: 0; background-color: rgba(156, 17, 55, 0.8); color: #fff; border-radius: 0 1rem 1rem 0; font-size: 0.95rem; font-weight: 400; text-align: center; transition: all 0.3s ease-in-out; }
.trending-section .trending-discount { padding: 0.6rem 1.2rem; position: absolute; top: 1rem; left: 1rem; background-color: rgba(156, 17, 55, 0.8); color: #fff; font-size: 0.95rem; font-weight: 400; text-align: center; transition: all 0.3s ease-in-out; }

.retailers-section { background-color: #F6F3EE; }
.retailers-section .body-title { color: #9C1137; }
.retailers-section .carousel-inner { }
.retailers-section .carousel-control { }
.retailers-section .carousel-control button { position: static; filter: brightness(0) saturate(100%) invert(15%) sepia(85%) saturate(2856%) hue-rotate(328deg) brightness(84%) contrast(101%); padding: 0.5rem; border-radius: 50%;  width: 42px; height: 42px; }
.retailers-section .carousel-control button.active { filter: none; background-color: #9C1137; }
.retailers-section .retailers-card { }
.retailers-section .retailers-comment { border-left: 0.3rem solid #F5CBCB; padding-left: 1rem; color: #636270; }
.retailers-section .retailers-cover { }
.retailers-section .retailers-user { background-repeat:no-repeat; background-size:cover; background-position:center; border-radius: 50%; width: 5rem; height: 5rem; }
.retailers-section .retailers-comma { background-repeat:no-repeat; background-size:contain; background-position:center; width: 6rem; height: 5rem; }
.retailers-section .retailers-card .card-title { font-weight: 600; }
.retailers-section .retailers-card .card-subtitle { color: #9A9CAA; font-size: 1.0rem; }

.design-section { }
.design-section .body-content { }
.design-section .design-img {background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:125%; }
.design-section .design-contain { border-top: 1rem solid #F6F3EE; border-bottom: 1rem solid #F6F3EE; }
.design-section .design-text { font-style: italic; font-size: 1.3rem; }
.design-section .design-heading { }

.interested-section { }
.interested-section .body-content { }
.interested-section .interested-img { background-repeat:no-repeat; background-size:cover; background-position:top center; padding-bottom:100%; }
.interested-section .interested-contain { }
.interested-section .interested-title { font-size: 2.2rem; }

.logos-item img { max-height: 3.5rem; }

footer { color: #9A9CAA; background-color: #f9f9f9; }
.pre-footer { font-weight: 400; }
.pre-footer a { color: #555; text-decoration: none; position: relative; }
.pre-footer a:hover,
.pre-footer a:focus { color: #9C1137; text-decoration: underline; }
.footer-socials { }
.footer-socials a { padding: 0.48rem 0.6rem; border: 1px solid transparent; text-align: center; color: #555; border-radius: 50%; display: inline-block;  font-size: 1.2rem; line-height: 1; vertical-align: middle; margin: 0 0.5rem; }
.footer-socials a:hover,
.footer-socials a:focus { color: #9C1137; border-color: #9C1137; }

.col-footer .footer-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.col-footer .nav-link { padding: 0.1rem 0; }
.col-footer .nav-link i {  font-size: 1.2rem; vertical-align: middle; color: #C6E8A5; margin-right: 0.3rem; }

.post-footer { }
.post-footer a { color: #9C1137; text-decoration: none; position: relative; }
.post-footer a:hover,
.post-footer a:focus { color: #000; }
.footer-logos { }
.footer-logos img { max-height: 1rem; filter: brightness(0) saturate(100%) invert(69%) sepia(1%) saturate(2318%) hue-rotate(195deg) brightness(91%) contrast(86%); }

/* Inner Pages */
.banner-figure { position: relative; }
.banner-figure .ratio-21x9 {  --bs-aspect-ratio: 25%;
}
.banner-figure .figure-caption { position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); text-align: center; color: #336699; width: 100%; text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5); font-size: 6rem; line-height: 1; }

.blog-content .woocommerce ul.products li.product {  text-align: center; }

.blog-content .woocommerce div.product .summary p.price,
.blog-content .woocommerce div.product .summary span.price,
.blog-content .woocommerce ul.products li.product .price {  color: #9C1137; font-size: 18px; font-weight: 700; }

.blog-content .woocommerce div.product .summary p.price,
.blog-content .woocommerce div.product .summary span.price { font-size: 26px; text-align: right; }

.blog-content .woocommerce ul.products li.product a,
.wt_frontend_wishlist_table a { color: #9C1137; }
.blog-content .woocommerce ul.products li.product .button,
.blog-content .woocommerce div.product form.cart .button,
.blog-content .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit { margin-left: auto; background-color: #9C1137; color: #fff; border: 1px solid #9C1137; }
.blog-content .woocommerce ul.products li.product .button:hover,
.blog-content .woocommerce ul.products li.product .button:focus,
.blog-content .woocommerce div.product form.cart .button:hover,
.blog-content .woocommerce div.product form.cart .button:focus,
.blog-content .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.blog-content .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit:focus { background-color: #fff; color: #9C1137; }

#bulk-add-to-cart,
.button.single-add-to-cart { background-color: #9C1137 !important; color: #fff !important; border: 1px solid #9C1137 !important; }
#bulk-add-to-cart:hover,
#bulk-add-to-cart:focus,
.button.single-add-to-cart:hover,
.button.single-add-to-cart:focus { background-color: #fff !important; color: #9C1137 !important; }

.blog-content .irs--flat .irs-from, 
.blog-content .irs--flat .irs-single, 
.blog-content .irs--flat .irs-to,
.blog-content .irs--flat .irs-bar { background-color: #9C1137; }

.blog-content .bapf_sfilter .bapf_head { border-top: 1px solid #9C1137; padding-top: 15px; margin-bottom: 10px; }
.blog-content .bapf_sfilter .bapf_head h3 { margin:0; color: #9C1137; font-size: 22px; font-weight: 700; }
.blog-content .bapf_sfilter.bapf_ckbox .bapf_body > ul > li > label { font-weight: 700; }
.columns-4 {
    columns: unset !important;
}
/************************************* Responsive Media Queries ***************************************/

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {


}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.carousel-main .carousel-indicators { position: static; padding-top: 1rem; }
	.carousel-main .carousel-indicators button { width: 18px; height: 18px; }
	.carousel-main .carousel-indicators button.active { width: 24px; height: 24px; }
	.body-title {  margin-bottom: 1.2rem; }
	.body-title h1,
	.body-title h3,
	.collections-section .collections-heading { font-size: 1.2rem; }
	.collections-section .collections-contain,
	.highlights-section .highlights-item,
	.body-title h5	{ font-size: 0.8rem; }
	.logos-item img { max-height: 1.1rem; }
	.products-section .products-item { text-align: center; }
	
	.carousel-main .carousel-caption { padding: 1rem 1rem }
	.carousel-main .carousel-caption h4 { font-size: 1.6rem; }
	.carousel-main .carousel-img { min-height: 10rem; }
	.crafted-section .crafted-title {
		font-size: 2.2rem;
	}
	.crafted-section .crafted-contain {
		font-size: 1.0rem;
	}
	
	.inspire-section .inspire-item a { display: block; }
	.inspire-section .inspire-item .inspire-img { display: block; width: auto; padding-bottom: 100%; }
	.inspire-section .inspire-content { padding: 1.5rem 0 !important; }
	.inspire-section .inspire-strip { margin-bottom: 1rem; }
	
	.retailers-section .retailers-comment { font-size: 1.0rem; }
	
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
.header-navs.nav { flex-direction: column; text-align: center; }
.header-navs.nav > li > a { padding: 0.6rem 1.0rem }
.header-navs.nav > li > a:before { display: none; }
.nav-item > .dropdown-menu { position: static; }
.dropdown-menu .dropdown-item { text-align: center; }	



}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}
@media (min-width: 576px) and (max-width: 767.98px) {

}
@media (min-width: 768px) and (max-width: 991.98px) {
	.logos-item img { max-height: 2.1rem; }
	.body-title h1 { font-size: 1.8rem; }

}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.logo img {
		max-height: 1.8rem;
	}
	.header-navs.nav > li > a { padding: 1.6rem 0.5rem; font-size: 0.8rem; }
	.carousel-main .carousel-caption h4 { font-size: 1.8rem; }
	.crafted-section .crafted-title {
		font-size: 2.2rem;
	}
	.crafted-section .crafted-contain {
		font-size: 1.0rem;
	}
	.inspire-section .inspire-item {
		font-size: 1.0rem;
	}
	.retailers-section .retailers-comment { font-size: 1.0rem; }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/*X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}

/* XX-Large devices (larger desktops, 1600px and up) */
@media (min-width: 1600px) {
}
