/*
 Theme Name:     Storefront Child
 Theme URI:      https://example.com/
 Description:    A custom child theme for Storefront
 Author:         Your Name
 Author URI:     https://example.com/
 Template:       storefront
 Version:        1.0.0
*/

.full_template {
    background: #fff !important;
    color: #17181A;
    font-family: 'Copse', arial, serif !important;
    font-size: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, a:link, a:visited {
    color: #F2481A;
}

a:hover,p a { 
    color: #F2481A !important;
}
.container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 15px;
}

/* =========================
   TOP BLACK BAR
========================= */
.full_template .top-bar {
    padding:15px 0px;
    background: #17181A;
    color: #fff;
}
.full_template .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.1px;
}
.full_template .top-left,
.full_template .top-right {
    display: flex;
    align-items: center;
}

.full_template .top-left {
    gap: 7px;
}

.full_template .top-right {
    gap: 26px;
}

.full_template .location-icon {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.full_template .top-link {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    line-height: normal;
}

.full_template .top-link.underlined {
    border-bottom: 1px solid #fff;
    padding-bottom: 1px;
}

/* =========================
   MAIN NAVIGATION
========================= */
.full_template .navbar {
    height: 71px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}
.full_template .navbar-inner{
    display: flex;
    align-items: center;
}
/* Logo */
.full_template .logo {
    width: 100px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.full_template .logo svg,
.full_template .logo img {
    width: 100px;
    height: auto;
    display: block;
}

/* Main menu */
.full_template .nav-menu {
    margin-left: 27px;
} 

.full_template .nav-menu .menu-main-menu-container {
    width: 100%;
}

.full_template .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 37px;  
    height: 100%;
    list-style: none;
    margin:0px;
    padding: 0px;
}

.full_template .nav-menu ul li a{
    color: #17181A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.full_template .nav-menu ul li a:hover {
    color: #F2481A;
}

/* Right icons */
.full_template .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.full_template .action-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17181A;
    cursor: pointer;
}

.full_template .action-btn svg {
    width: 19px;
    height: 19px;
    stroke:  #17181A;
}

.full_template .action-btn .cart-customlocation {
    position: relative;
    color: #17181A;
}

.full_template .action-btn .cart-customlocation span#cart-count {
    position: absolute;
    top: -8px;
}

.hamburger {
    display: none;
    width: 32px;
    height: 32px;
    padding: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-right: 10px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}


/* Search Toggle Button */
.action-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    animation: fadeIn 0.3s ease;
}
.search-overlay.active {
    display: flex;
}
.search-container {
    width: 90%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    animation: slideDown 0.3s ease;
}
.search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #F2481A;
    transition: transform 0.3s ease;
}
.search-close:hover {
    transform: rotate(90deg);
}
/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}
.search-field {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 18px;
    outline: none;
    background: transparent;
}
.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 15px;
}
.search-submit svg {
    width: 24px;
    height: 24px;
    color: #17181A;
}
/* Search Results */
.search-results {
    max-height: 400px;
    overflow-y: auto;
}
.search-results .result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-results .result-item:hover {
    background: #f9f9f9;
}
.search-results .result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}
.search-results .result-item .result-title {
    font-weight: 600;
    color: #333;
}
.search-results .result-item .result-type {
    font-size: 12px;
    color: #17181A;
    margin-left: 10px;
    text-transform: uppercase;
}
.search-results .result-item .result-price {
    margin-left: auto;
    font-weight: 700;
    color: #17181A;
}
.no-results {
    text-align: center;
    padding: 30px 0;
    color: #17181A;
}
.loading-spinner {
    text-align: center;
    padding: 20px;
}
.loading-spinner::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .full_template .nav-menu{
        margin-left: 15px;
    }
    .full_template .nav-menu ul{
        gap: 20px;
        margin-left: 15px;
    }

    .full_template ul li a {
        font-size: 13px;
    }
    .full_template .top-bar {
        display: none;
    }
}

@media (max-width: 700px) {
    .full_template .top-right {
        display: none;
    }

    .full_template .navbar {
        height: 65px;
    }

    .full_template .nav-actions {
        gap: 18px;
    }

    .navbar-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
        order: 1;
        flex-shrink: 0;
    }

    .logo {
        order: 2;
    }

    .nav-actions {
        order: 3;
    }

    /* Hide desktop menu */
    .nav-menu {
        display: none;
    }

    /* Mobile dropdown */
    .nav-menu.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        margin-left: 0px;
        text-align: left;
    }

    .nav-menu.mobile-open ul {
        display: block;
        margin: 0;
        padding: 10px 0;
    }

    .nav-menu.mobile-open li {
        display: block;
        width: 100%;
    }

    .nav-menu.mobile-open li a {
        display: block;
        padding: 13px 20px;
        color: #000;
        text-decoration: none;
    }

    .nav-menu.mobile-open li a:hover {
        background: #f5f5f5;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Optional: smaller icons on mobile */
    .nav-actions {
        gap: 8px;
    }

    .action-btn svg {
        width: 20px;
        height: 20px;
    }

}


/*************** Header css close ****************************/


.full_template .hero-section {
    padding-top: 100px;
    padding-bottom: 200px;
}
.full_template .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.full_template .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #F2481A;
    display: inline-block;
}
.full_template .hero-section h1,.full_template .hero-section h2 {
    line-height: normal;
    margin-top: 10px;
}
.full_template .hero-section p {
    line-height: 1.62em;
}
.full_template .gap20{
    gap:20px;
}
.full_template .form-section {
    margin-top: -80px;
    padding-bottom: 50px;
}
.full_template .form-section-inner {
    box-shadow:0px 0px 10px 0px #0000006b;
    padding: 30px;
    border-radius: 10px;
}
.full_template .parts-search {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.full_template .field {
    flex: 1;
}

.full_template .field label {
    display: block;
    margin-bottom: 4px;
    color:#C7CCD1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    text-align: left;
}

.full_template .field select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-radius: 2px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    appearance: auto;
}

.full_template .field select:focus {
    border-color: #aaa;
}

.full_template .search-btn {
    height: 46px;
    min-width: 157px;
    padding: 0 24px;
    border: 0;
    border-radius: 3px;
    background: #f2481a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.full_template .search-btn:hover {
    background: #0E0F11;
}

.full_template .site-footer {
    background: #0E0F11;
    color: #C7CCD1;
    border-top: 1px solid #292a2d;
}

.full_template .footer-main {
    width: 100%;
    padding: 40px 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 55px;
    text-align: left;
}

/* Logo */
.full_template .footer-logo {
    margin-bottom: 20px;
}


.full_template .footer-logo .logo-mark {
    color: #fa431d;
    margin-right: 2px;
    font-size: 12px;
}

/* Description */
.full_template .footer-description {
    max-width: 225px;
    font-size: 15px;
    line-height: 23px;
    color: #6f7887;
}

/* Social icons */
.full_template .social-links {
    display: flex;
    gap: 10px;
    margin-top: 21px;
}

.full_template .social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #3a3d42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c3c8cf;
    text-decoration: none;
    font-size: 10px;
    transition: 0.2s ease;
}

.full_template .social-links a:hover {
    border-color: #fa431d;
    color: #fa431d;
}

/* Footer headings */
.full_template .footer-column h3,
.full_template .footer-column h5 {
    color: #f1f1f2;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Footer links */
.full_template .footer-links {
    list-style: none;
}

.full_template .footer-links li {
    margin-bottom: 11px;
    line-height: normal;
}

.full_template .footer-links li:last-child{
    margin:0px;
}

.full_template .footer-links a {
    color: #858d9a;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    transition: color 0.2s ease;
}

.full_template .footer-links a:hover {
    color: #fff;
}

/* Newsletter */
.full_template .newsletter-text {
    max-width: 225px;
    font-size: 14px;
    line-height: 21px;
    color: #6f7887;
    margin-bottom: 12px;
}

.full_template .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 223px;
}

.full_template .newsletter-form input {
    height: 39px;
    width: 100%;
    background: transparent;
    border: 1px solid #3a3b3f;
    border-radius: 2px;
    padding: 0 13px;
    outline: none;
    color: #ddd;
    font-size: 14px;
}

.full_template .newsletter-form input::placeholder {
    color: #59606b;
}

.full_template .newsletter-form input:focus {
    border-color: #fa431d;
}

.full_template .newsletter-form button {
    height: 42px;
    border: 0;
    border-radius: 2px;
    background: #F2481A;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.full_template .newsletter-form button:hover {
    background: #e93b17;
}

/* =========================
   FOOTER BOTTOM
========================== */

.full_template .footer-bottom {
    border-top: 1px solid #292a2d;
}

.full_template .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0px;
}

.full_template .copyright {
    font-size: 13px;
    color: #626b78;
}

.full_template .bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.full_template .bottom-links a {
    color: #68717e;
    text-decoration: none;
    font-size: 13px;
}

.full_template .bottom-links a:hover {
    color: #fff;
}

.full_template .secure-checkout {
    display: flex;
    align-items: center;
    gap: 7px;
}

.full_template .lock {
    width: 9px;
    height: 9px;
    border: 1px solid #68717e;
    border-radius: 2px;
    position: relative;
    margin-top: 3px;
}

.full_template .lock::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid #68717e;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    left: 1px;
    top: -6px;
}



/*************** Product Single Page css *****************************/
.single-product {
    background: #faf8f3 !important;
}
.stopp-crumbs {
    padding: 20px 0 0;
    font-size: 13px;
    color: #161513;
    text-align: left;
}
.stopp-crumbs a{color:#F2481A !important;text-decoration:none}
.stopp-crumbs a:hover{color:#161513}

.stopp-product{display:grid;grid-template-columns:1.15fr 1fr;gap:56px;padding:28px 0 48px;color: #161513;}
.stopp-gallery-main{aspect-ratio:1/1;background:#f1ede3;border:1px solid #e4e0d6;display:flex;align-items:center;justify-content:center;overflow:hidden}
.stopp-gallery-main img{width:100%;height:100%;object-fit:contain}
.stopp-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}
.stopp-thumb{aspect-ratio:1/1;background:#f1ede3;border:1px solid #e4e0d6;cursor:pointer;overflow:hidden}
.stopp-thumb img{width:100%;height:100%;object-fit:contain}
.stopp-thumb.active{border-color:#d1461f;box-shadow:inset 0 0 0 1px #d1461f}

.stopp-category {
    font-size: 12px;
    letter-spacing: .04em;
    color: #f2481a;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.stopp-category::before{content:"";width:6px;height:6px;background:#f2481a;display:inline-block}
.stopp-product h1.stopp-title {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-align: left;
    color: #161513;
}

.stopp-fit-banner{display:flex;align-items:center;justify-content:space-between;background:#f1ede3;border:1px solid #e4e0d6;padding:12px 16px;font-size:14px;margin-bottom:22px}
.stopp-fit-banner .fit-check{display:flex;align-items:center;gap:8px}
.stopp-fit-banner strong{font-weight:600}
.stopp-fit-banner a{color:#161513;text-decoration:underline;font-size:13px}

.stopp-price{font-size:28px;font-weight:600;margin-bottom:4px;text-align: left;line-height: normal;}
.stopp-price .gst{font-size:13px;font-weight:400;color:#161513;margin-left:8px}
.stopp-stock{display:flex;align-items:center;gap:8px;font-size:13px;color:#161513;margin-bottom:24px}
.stopp-stock::before{content:"";width:7px;height:7px;border-radius:50%;display:inline-block}
.stopp-stock.in-stock::before{background:#4c8b3f}
.stopp-stock.out-of-stock::before{background:#b5382a}

.stopp-buy-row{display:flex;gap:12px;margin-bottom:26px}
.stopp-qty{display:flex;align-items:center;border:1px solid #e4e0d6;background:#fff}
.stopp-qty button{width:38px;height:44px;border:none;background:transparent;font-size:16px;cursor:pointer;color:#161513}
.stopp-qty input[type=number] {
    width: 46px;
    border: none;
    border-left: 1px solid #e4e0d6;
    border-right: 1px solid #e4e0d6;
    text-align: center;
    height: 44px;
    font-size: 14px;
    -moz-appearance: textfield;
    background: transparent !important;
    margin: 0px;
    color: #161513;
}
.stopp-qty input[type=number]::-webkit-inner-spin-button,
.stopp-qty input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.stopp-btn-add {
    flex: 1;
    background: #f2481a;
    color: #fff;
    border: none;
    height: 46px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}
.stopp-btn-add:hover{background:#0E0F11;}
.stopp-btn-wish{cursor:pointer;display:flex;align-items:center;justify-content:center;color:#161513}
.stopp-btn-wish .tinvwl_add_to_wishlist-text{
    display: none;
}
.stopp-btn-wish a{
    color:#161513 !important;
    margin: 0px !important;
    width:44px;height:46px;border:1px solid #e4e0d6;background:#fff;
    display:flex;align-items:center;justify-content:center;
}
.stopp-btn-wish a:before{
    margin: 0px !important;
}
.stopp-btn-wish:hover{color:#d1461f;border-color:#d1461f}

.stopp-trust-row{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #e4e0d6;padding-top:20px;gap:12px}
.stopp-trust-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;font-size:12px;color:#161513}
.stopp-trust-item svg{width:20px;height:20px;color:#161513}

.stopp-tabs-section{padding:36px 0 56px;border-top:1px solid #e4e0d6}
.stopp-tabs{display:flex;gap:32px;border-bottom:1px solid #e4e0d6;margin-bottom:28px}
.stopp-tab{padding:0 0 14px;font-size:14px;color:#161513;cursor:pointer;position:relative;background:none;border:none;font-family:inherit}
.stopp-tab.active{color:#161513;font-weight:600}
.stopp-tab.active::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;background:#d1461f}
.stopp-tab-panel{display:none}
.stopp-tab-panel.active{display:block}

.stopp-desc-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:64px}
.stopp-desc-grid .stopp-desc-text{font-size:15px;line-height:1.7;color:#3a3833;margin:0;max-width:60ch}
.stopp-desc-grid .stopp-desc-text p{margin:0 0 1em}
.stopp-spec-table{width:100%;border-collapse:collapse;font-size:14px}
.stopp-spec-table th {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .03em;
    color: #161513;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e0d6;
    background: transparent;
    height: auto;
}
.stopp-spec-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e4e0d6;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #161513;
}
.stopp-spec-table td:first-child{color:#161513}
.stopp-spec-table td:last-child{text-align:right;font-weight:500}

.stopp-reviews .commentlist{list-style:none;padding:0;margin:0}
.stopp-reviews .comment{padding:20px 0;border-bottom:1px solid #e4e0d6}
.stopp-reviews .star-rating{color:#d1461f}

.stopp-related{padding:48px 0 64px;border-top:1px solid #e4e0d6}
.stopp-related h2{font-size:26px;font-weight:600;margin:0 0 28px;color:#161513;text-align: left}
.stopp-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.stopp-rel-card{border:1px solid #e4e0d6;background:#fff;text-decoration:none;color:inherit;display:block}
.stopp-rel-card:hover{border-color:#d1461f}
.stopp-rel-thumb{aspect-ratio:1/1;background:#f1ede3;overflow:hidden}
.stopp-rel-thumb img{width:100%;height:100%;object-fit:contain}
.stopp-rel-body{padding:16px}
.stopp-rel-body h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin: 0 0 4px;
    text-align: left;
    color: #161513;
}
.stopp-rel-fit {
    font-size: 12.5px;
    color: #161513;
    margin: 0 0 12px;
    line-height: normal;
    text-align: left;
}
.stopp-rel-bottom{display:flex;align-items:center;justify-content:space-between}
.stopp-rel-price{font-size:14px;font-weight:600;color:#f2481a;}
.stopp-rel-view{font-size:12.5px;text-decoration:underline;color:#161513}

/* WooCommerce variable-product selectors */
.stopp-variations .variations{width:100%;border-collapse:collapse;margin-bottom:16px}
.stopp-variations .variations td.label label{font-size:14px;color:#161513}
.stopp-variations .variations td.value select{width:100%;height:40px;border:1px solid #e4e0d6;background:#fff;font-size:14px;padding:0 12px}
.stopp-variations .reset_variations{font-size:12px;color:#d1461f;margin-top:6px;display:inline-block}
.stopp-variations .single_variation_wrap .woocommerce-variation-price{margin-bottom:12px}

/* Hide WooCommerce default elements that clash */
.woocommerce-breadcrumb{display:none}

@media(max-width:860px){
    .stopp-product{grid-template-columns:1fr;gap:28px}
    .stopp-desc-grid{grid-template-columns:1fr;gap:32px}
    .stopp-related-grid{grid-template-columns:repeat(2,1fr)}
    .stopp-product h1.stopp-title{font-size:28px}
}


/*************** Product Single Page css *****************************/


.cart-section{
    padding: 60px 0px;
}
.cart-section th{
    color: #F2481A;
}
.cart-section .wc-block-cart__submit-button,
.wc-block-components-totals-coupon__button,
.checkout-section .wc-block-components-checkout-place-order-button {
    border: 0;
    border-radius: 2px;
    background: #F2481A !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease !important;
}
.cart-section .wc-block-cart__submit-button:hover,
.checkout-section .wc-block-components-checkout-place-order-button:hover{
    background: #0E0F11 !important;
}
.cart-section a.wc-block-components-product-name {
    text-align: left;
    text-decoration: none;
}
.cart-section .wc-block-cart__totals-title{
    font-weight: 600 !important;
}
.checkout-section {
    padding: 40px 0px;
    text-align: left;
}
.checkout-section h2 ,
.checkout-section .wc-block-components-checkout-order-summary__title-text{
    color: #17181a;
    text-align: left;
    font-weight: 700 !important;
}
.main_section {
    width: 100%;
    padding: 40px 0px;
    color: #17181A;
}
.main_section h1.dtbaker_google_font {
    margin-bottom: 20px;
    color: #17181A;
    font-weight: 700;
    font-size: 32px;
}
.products li.product {
    padding: 10px !important;
     border: 1px solid transparent !important; 
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #0000002e;
}
.products li.product:hover {
     border: 1px solid #f2481b; 
}
.products h2,
.whishlist-section .tinv-header h2 {
    color: #17181A;
    font-weight: 600;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    text-align: left !important;
}
.products h2{
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products .button {
    height: 42px;
    border: 0 !important;
    border-radius: 2px !important;
    background: #F2481A !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s ease;
    line-height: normal !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.products .button:hover {
    background: #0E0F11 !important;
}
.products .product .button{
    margin-right: 50px !important;
}
.products .product .tinv-wishlist {
    position: absolute;
    bottom: 20px;
    right: 15px;
}
.products .product .tinv-wishlist span.tinvwl_add_to_wishlist-text {
    display: none;
}
.products .price {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #f2481b !important;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
}
.woocommerce-ordering select.orderby {
    box-shadow: 0px 0px 10px 0px #0000002e;
    background: #fff;
    padding: 12px;
    border-radius: 5px;
    color: #17181A;
    font-weight: 600 !important;
}
.products .tinvwl_add_to_wishlist_button{
    color: #F2481A !important;
}
nav.woocommerce-pagination span.page-numbers.current {
    background: #f2481b !important;
    color: #fff !important;
}
nav.woocommerce-pagination .page-numbers {
    color: #17181A !important;
}
.whishlist-section{
    padding: 40px 0px;
}
.whishlist-section .button {
    height: auto;
    border: 0 !important;
    border-radius: 5px !important;
    background: #F2481A !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    line-height: normal !important;
    padding: 12px 10px !important;
}
.whishlist-section .button:hover {
    background: #0E0F11 !important;
}
.whishlist-section .product-name {
    text-align: left;
    font-weight: 600;
}
.whishlist-section select#tinvwl_product_actions {
    padding: 12px 10px;
    height: auto;
    line-height: normal;
    border-radius: 5px;
    background: #fff;
    color: #17181A;
}
.whishlist-section td.product-name a{
    text-decoration: none;
}
.whishlist-section table th{
    color: #fff !important;
    height: auto !important;
    background: #F2481A !important;
}
.tinv-wishlist{
    color: #17181A;
}

@media (max-width: 900px) {
    .full_template .footer-main {
        padding: 35px 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0px;
    }

    .full_template .footer-bottom-inner {
        padding: 15px 0px;
    }
}

@media (max-width: 768px) {
    .full_template .parts-search {
        flex-direction: column;
        align-items: stretch;
    }

    .full_template .search-btn {
        width: 100%;
    }
    .full_template .hero-section {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .cart-section {
        padding: 20px 0px 0px;
    }
    .cart-section .wc-block-cart__sidebar {
        margin-bottom: 0px;
    }
    .products .product .button {
        margin-right: 30px !important;
    }
    .products .product .tinv-wishlist {
        right: 8px;
    }
}

@media (max-width: 600px) {
    .full_template .footer-main {
        grid-template-columns: 1fr;
        padding: 35px 0px;
        gap: 30px;
    }

    .full_template .footer-description,
    .full_template .newsletter-text,
    .full_template .newsletter-form {
        max-width: 100%;
    }

    .full_template .footer-bottom-inner {
        padding: 20px 0px;
        flex-direction: column;
        align-items: flex-start;
    }

    .full_template .bottom-links {
        flex-wrap: wrap;
        gap: 14px 20px;
    }
    .full_template .form-section-inner {
        padding: 15px;
    }
    p br{
        display: none;
    }
    .hero-section .wp-block-buttons>.wp-block-button {
        width: 100%;
    }
}
