/* ==============================
   Modern Footer Design
   ============================== */
.ps-footer {
    background: #ececec;
    color: #2d2d2d;
    font-family: "Inter", "Poppins", sans-serif;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
}

.ps-footer .ps-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Widgets Layout */
.ps-footer__widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Contact Us Widget */
.widget_footer {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.widget_footer:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.widget_footer .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
    border-left: 4px solid #cf0000;
    padding-left: 10px;
}

.widget_footer p, 
.widget_footer a {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
}

.widget_footer a:hover {
    color: #cf0000;
}

/* Social Icons */
.widget_footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f3f4f6;
    border-radius: 50%;
    color: #2563eb;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.widget_footer .social-links a:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.1);
}

/* Bottom Links */
.ps-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.ps-footer__links a {
    color: #374151;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ps-footer__links a:hover {
    color: #2563eb;
}

/* Copyright Section */
.ps-footer__copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 14px;
    color: #6b7280;
}

.ps-footer__copyright .footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-payments span img {
    max-height: 28px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-payments span img:hover {
    opacity: 1;
}

/* Back to Top */
#back2top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

#back2top:hover {
    background: #1e3a8a;
    transform: translateY(-4px);
}

/* Newsletter Popup Styling */
.ps-popup__content {
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
}

.ps-popup__content h4 {
    font-size: 22px;
    color: #111827;
}

.ps-popup__content p {
    font-size: 15px;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ps-footer {
        padding: 40px 0 15px;
    }

    .ps-footer__widgets {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ps-footer__copyright {
        flex-direction: column;
        text-align: center;
    }

    #back2top {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* ------------------------------
   INNOVENTION HEADER STYLING
   ------------------------------ */
/* === Modern Premium Header Design === */


header.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1000;
}

/* --- Logo Section --- */
.header__left .ps-logo img {
    max-height: 45px;
    transition: transform 0.3s ease;
}
.header__left .ps-logo img:hover {
    transform: scale(1.05);
}

/* --- Search Bar --- */
.ps-form--quick-search {
    display: flex;
    align-items: center;
    background: #f9fafc;
    border-radius: 40px;
    padding: 5px 15px;
    transition: box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
  	margin: 20px;
}
.ps-form--quick-search:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.ps-form--quick-search input {
    border: none !important;
    background: transparent;
    flex: 1;
    padding: 10px;
    font-size: 15px;
}
.ps-form--quick-search button {
    background: #cf0000;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 38px;
    padding: 0px 18px;
    transition: all 0.3s ease;
}
.ps-form--quick-search button:hover {
    background: #a50000;
    transform: scale(1.1);
}

/* --- Menu Navigation --- */
.navigation {
    background: #ffffff;
    border-top: 1px solid #f2f2f2;
}
.navigation .menu > li {
    margin: 0 15px;
}
.navigation .menu > li > a {
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 5px;
    transition: all 0.3s ease;
    position: relative;
}
.navigation .menu > li > a:hover {
    color: #cf0000;
}
.navigation .menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background: #cf0000;
    transition: width 0.3s ease;
}
.navigation .menu > li > a:hover::after {
    width: 100%;
}

/* --- Header Icons (Cart, Wishlist, etc.) */
.header__actions a {
    color: #555;
    margin: 0 8px;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}
.header__actions a:hover {
    color: #cf0000;
    transform: translateY(-2px);
}
.header__actions a span i {
    position: absolute;
       top: 2px;
    background: #cf0000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    padding: 2px 5px;
}

/* --- User Block --- */
.ps-block--user-header {
    display: flex;
    align-items: center;
    background: #f9fafc;
    border-radius: 25px;
    padding: 6px 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
}
.ps-block--user-header:hover {
    background: #cf0000;
    color: #fff;
}
.ps-block--user-header:hover a,
.ps-block--user-header:hover i {
    color: #fff !important;
}
.header .header__extra:hover > span > i{
    color: #ffffff !important;
}
/* --- Mobile Menu --- */
@media (max-width: 991px) {
    header.header {
        box-shadow: 0 1px 8px rgba(0,0,0,0.1);
    }

    .header__top .ps-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__center {
        width: 100%;
        margin-top: 10px;
    }

    .ps-form--quick-search {
        width: 100%;
        border-radius: 25px;
        padding: 5px 10px;
    }

    .navigation__right {
        display: none;
    }

    .navigation--list {
        background: #fff;
        border-top: 1px solid #eee;
        position: fixed;
        bottom: 0;
        width: 100%;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
    .navigation__item {
        flex: 1;
        text-align: center;
        padding: 10px 0;
        color: #555;
        transition: all 0.3s ease;
    }
    .navigation__item:hover {
        color: #ffffff;
        background: #ffffff;
    }
}

/* --- Dropdowns & Language Switcher --- */
.ps-dropdown > a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.ps-dropdown:hover > a {
    color: #cf0000;
}
.ps-dropdown-menu {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* --- Sticky Header --- */
header.header[data-sticky="true"].header--sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: fadeInDown 0.4s ease;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
}
@keyframes fadeInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Category Menu --- */
.menu--product-categories .menu__toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}
.menu--product-categories .menu__toggle:hover {
    color: #cf0000;
}
.header--mobile.header--sticky .navigation--mobile{
    background-color: #ececec;
}
.header .ps-form--quick-search button {
    border-radius: 30px;
}
.menu > li.menu-item-has-children > a:after{
        top: auto;
        
}
ul.menu--dropdown li a:hover {
    color: #ffffff !important;
}
.menu--dropdown > li > a > img{
    margin-right: 10px;
}
#back2top{
    background-color: #cf0000 !important;
}
#back2top i {
    color: #ffffff !important;
}

.ps-list--link li a:before{
background-color: #cf0000;;
}
.floating-buttons ul {
list-style: none;
}
.ps-product {
    padding: 15px;
    border: 1px solid #bfbfbf;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 2px 0px 12px 10px rgba(241, 241, 241, 0.81);
}
.ps-product .ps-product__title {
	color:#cf0000
}
.ps-product .ps-product__content > p {
    color: #000;
    font-size: 20px;
    margin: 6px 0px;
}
.ps-product .ps-product__thumbnail img {
    width: 100%;
    min-height: 160px;
}
.ps-product .ps-product__content .rating_wrap {
    display: none;
}

.pagination .page-item.active .page-link,
.pagination .page-item a.page-link:hover {
    color: #ffffff;
}