/* Core Configurations */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #333; background-color: #fbfbfb; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
.header-container { max-width: 1230px; margin: 0 auto; padding: 0 15px; }

/* Flatsome Style Top Header Row */
.top-bar { background-color: #446084; color: #fff; font-size: 11px; padding: 8px 0; font-weight: 700; letter-spacing: 0.05em; }
.top-bar .header-container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { margin-right: 20px; opacity: 0.85; }
.top-bar-left i { margin-right: 4px; }
.top-bar-right a { color: #fff; margin-left: 12px; font-size: 13px; opacity: 0.85; }
.top-bar-right a:hover { opacity: 1; }

/* Main Search Navigation Layout */
.main-header { background-color: #fff; border-bottom: 1px solid #ececec; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.header-main-flex { display: flex; justify-content: space-between; align-items: center; padding: 25px 15px; }
.logo { font-size: 26px; letter-spacing: 1px; }
.logo-bold { font-weight: 700; color: #111; }
.logo-light { font-weight: 300; color: #446084; }

/* Sticky Style Center Search Button */
.search-wrapper { flex: 0 1 550px; margin: 0 30px; }
.search-form { display: flex; position: relative; border: 2px solid #ddd; border-radius: 4px; overflow: hidden; }
.search-form input { width: 100%; padding: 10px 15px; border: none; outline: none; font-size: 14px; }
.search-form button { background-color: #d2691e; color: white; border: none; padding: 0 22px; font-size: 16px; cursor: pointer; }
.search-form button:hover { background-color: #b85a1a; }

/* Shopping Cart Block Details */
.header-cart .cart-link { display: flex; align-items: center; font-size: 13px; font-weight: 700; color: #555; }
.cart-total { color: #111; margin-left: 4px; }
.cart-icon-wrap { position: relative; margin-left: 10px; font-size: 22px; color: #446084; }
.cart-count { position: absolute; top: -4px; right: -8px; background-color: #d2691e; color: #fff; border-radius: 50%; font-size: 10px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* Submenu Links Row */
.lower-nav { background-color: #f7f7f7; border-top: 1px solid #eee; }
.nav-links { display: flex; padding: 10px 0; }
.nav-links li { margin-right: 25px; }
.nav-links a { font-size: 13px; font-weight: 700; color: #666; letter-spacing: 0.05em; }
.nav-links a.active, .nav-links a:hover { color: #446084; border-bottom: 2px solid #446084; padding-bottom: 2px; }

/* Split Sidebar/Product Cards Grid Base */
.shop-layout-grid { display: flex; margin-top: 30px; margin-bottom: 60px; gap: 30px; }
.shop-sidebar { flex: 0 0 240px; }
.sidebar-title { font-size: 16px; font-weight: 700; border-bottom: 2px solid #ddd; padding-bottom: 8px; margin-bottom: 15px; letter-spacing: 0.5px; }
.sidebar-categories li { border-bottom: 1px solid #ececec; }
.sidebar-categories a { display: block; padding: 10px 0; font-size: 14px; color: #666; }
.sidebar-categories a.active-cat, .sidebar-categories a:hover { color: #111; font-weight: 700; }

/* Product Canvas Frame Sorting elements */
.products-catalog { flex: 1; }
.catalog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14px; color: #777; }
.sort-dropdown select { padding: 6px 12px; border: 1px solid #ddd; border-radius: 4px; color: #555; background-color: white; outline: none; }

/* Responsive Grid Core */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; }
.product-card { background: #fff; border: 1px solid #eee; text-align: center; transition: box-shadow 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.06); }

/* Card Image Display Mechanics */
.product-image-wrapper { position: relative; width: 100%; overflow: hidden; background-color: #f7f7f7; padding-top: 110%; }
.product-image-wrapper img, .prod-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .prod-img { transform: scale(1.04); }

/* Quick View Strip Transition */
.quick-view-overlay { position: absolute; bottom: 0; left: 0; right: 0; background-color: rgba(68, 96, 132, 0.9); color: white; font-size: 12px; font-weight: 700; padding: 8px 0; transform: translateY(100%); transition: transform 0.25s ease; letter-spacing: 1px; cursor: pointer; }
.product-card:hover .quick-view-overlay { transform: translateY(0); }

/* Card Text & Information Hierarchy Layout */
.product-info { padding: 15px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.product-cat-tag { font-size: 10px; text-transform: uppercase; color: #aaa; font-weight: 700; letter-spacing: 0.5px; }
.product-item-title { font-size: 14px; font-weight: 400; color: #333; line-height: 1.3; }
.product-item-title a:hover { color: #446084; }
.product-price { font-size: 15px; font-weight: 700; color: #111; margin: 4px 0; }
.price-currency { font-size: 13px; font-weight: 400; color: #555; }

/* Flat Style Select Options Accent Button */
.select-options-btn { display: inline-block; background-color: #637f94; color: white; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 3px; letter-spacing: 0.05em; width: 100%; margin-top: 5px; }
.select-options-btn:hover { background-color: #446084; }

.empty-catalog-message { grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: #777; }