.home-wrapper {
    max-width: 1400px;
    margin: auto;
    margin-top: 20px;
}
.panel.wrapper {
    background-color: #062045 !important;
}
/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#1e3a8a,#263b69);
    padding: 60px;
    border-radius: 10px;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero h1 span {
    color: #f97316;
}

.hero p {
    margin: 15px 0;
    opacity: .9;
}

.hero-image img {
    max-width: 400px;
}

/* BUTTON */
.btn {
    background: #f97316;
    padding: 12px 25px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.btn.white {
    /* background: #fff; */
    color: #fff;
}

.btn.white-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
}

/* CATEGORY */
.category {
    text-align: center;
    padding: 40px 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.cat-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: .3s;
}

.cat-card:hover {
    transform: translateY(-5px);
}

/* PRODUCTS */
.products {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* .product-card img {
    height: 150px;
} */

.price {
    color: #062045;
    font-weight: bold;
}

/* SALE STRIP */
.sale-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #062045;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    padding: 30px 0;
    color: #555;
}
.page-title-wrapper {
    display: none;
}
/* RESPONSIVE */
@media(max-width:1024px){
    .cat-grid { grid-template-columns: repeat(3,1fr); }
    .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:768px){
    .hero { flex-direction: column; text-align: center; }
    .features { grid-template-columns: repeat(2,1fr); }
}


.block-search{
    width:350px;
}

.block-search .field.search{
    display:flex;
    align-items:center;
}

.block-search .control{
    flex:1;
}

.block-search .input-text{
    width:100%;
    height:42px;
    border:1px solid #ccc;
    padding:0 15px;
    border-radius:4px 0 0 4px;
}

.block-search .action.search{
    width:90px;
    height:42px;
    border:none;
    background:#003366;
    color:#fff;
    border-radius:0 4px 4px 0;
    cursor:pointer;
}

.block-search .action.search:hover{
    background:#0055aa;
}
.block-search {
    position: relative;
    width: 320px;
}

.block-search .field.search {
    position: relative;
}

.block-search .control {
    width: 100%;
}

.block-search input.input-text {
    width: 100%;
    height: 42px;
    padding: 0 45px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.block-search .action.search {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.block-search .action.search span {
    display: none;
}

.block-search .action.search:before {
    content: "\e615";
    font-family: 'luma-icons';
    font-size: 18px;
}

/* =========================
   HEADER MENU
========================= */

.navigation {
    background: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.navigation ul {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.navigation .level0 {
    position: relative;
    margin: 0 5px;
}

.navigation .level0 > .level-top {
    color: #555 !important;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 24px;
    transition: all .3s ease;
    text-decoration: none;
}

.navigation .level0:hover > .level-top,
.navigation .level0.active > .level-top {
    color: #ff6a00 !important;
}

/* Orange Active Bar */
.navigation .level0:hover::after,
.navigation .level0.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #ff6a00;
}

/* Dropdown */
.navigation .submenu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    padding: 10px 0;
    min-width: 230px;
    background: #fff;
}

/* Dropdown Items */
.navigation .submenu li a {
    color: #444;
    padding: 12px 20px;
    display: block;
    transition: all .3s;
}

.navigation .submenu li a:hover {
    background: #ff6a00;
    color: #fff;
}

/* Small Arrow */
.navigation .level0.parent > .level-top:after {
    /* content: " ▼"; */
    font-size: 11px;
    color: #999;
}
.navigation .level0 {
    position: relative;
}

.navigation .submenu {
    top: 100%;
    left: 0;
}
.product-card h3 {
    background: darkorange;
}

/* ===========================================================
   PRODUCT GRID DESIGN
=========================================================== */

.products.wrapper.products-grid .product-item {
    margin-bottom: 30px !important;
}

.products.wrapper.products-grid .product-item-info {
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all .35s ease !important;
    padding: 15px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.08) !important;
    height: 100% !important;
}

.products.wrapper.products-grid .product-item-info:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.18) !important;
    border-color: #ff6600 !important;
}

/* ===========================
   PRODUCT IMAGE
=========================== */

.product-item-photo {
    display: block !important;
    text-align: center !important;
    margin-bottom: 15px !important;
}

.product-image-container {
    width: 100% !important;
}

.product-image-wrapper {
    display: block !important;
}

.product-image-photo {
    width: 100% !important;
    height: 240px !important;
    object-fit: contain !important;
    transition: all .4s ease !important;
}

.product-item-info:hover .product-image-photo {
    transform: scale(1.06);
}

/* ===========================
   PRODUCT NAME
=========================== */

.product-item-name {
    margin: 10px 0 !important;
    min-height: 45px;
}

.product-item-name a {
    color: #222 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.product-item-name a:hover {
    color: #ff6600 !important;
}

/* ===========================
   PRICE
=========================== */

.price-box {
    margin: 10px 0 !important;
}

.price {
    color: #ff6600 !important;
    font-size: 24px !important;
    font-weight: bold !important;
}

/* ===========================
   ADD TO CART
=========================== */

.action.tocart {
    width: 100% !important;
    height: 46px !important;
    border-radius: 30px !important;
    background: #ff6600 !important;
    border: none !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: .3s !important;
}

.action.tocart:hover {
    background: #07294d !important;
}

/* ===========================
   COMPARE BUTTON
=========================== */

.actions-secondary {
    margin-top: 12px !important;
    text-align: center;
}

.actions-secondary a {
    color: #555 !important;
}

.actions-secondary a:hover {
    color: #ff6600 !important;
}

/* ===========================
   TOOLBAR
=========================== */

.toolbar {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

/* ===========================
   SIDEBAR
=========================== */

.sidebar .block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.sidebar .filter-title strong {
    font-size: 18px;
    color: #07294d;
}

/* ===========================
   GRID SPACING
=========================== */

.products-grid .product-items {
    display: flex;
    flex-wrap: wrap;
}

.products-grid .product-item {
    padding: 10px !important;
}