.header .header__top {
    background-color: #fff;

}
 .header .ps-block__left i,.header .ps-block--user-header .ps-block__right a,.header .header__extra>i {
  color: var( --color-1st);
}
.ps-form--quick-search .form-control {
    background-color: #f5f3f3;
}
.ps-product-list .ps-section__links li a:hover {
    color: #f2f2f2;
}
.ps-btn:active, .ps-btn:hover, button.ps-btn:active, button.ps-btn:hover {
   /* background-color: #fff;*/
    color: #fff!important;
}
body.show-admin-bar .header.header--sticky .header__top{
  background-color: #7992c9;
}
/* ===== Modern Site Features (CSS only) ===== */
.ps-site-features{
  padding: 24px 0;
  background: transparent;
}

.ps-site-features .ps-block--site-features{
  
  gap: 16px;
  border: 0;
}

/* Card */
.ps-site-features .ps-block--site-features .ps-block__item{
  display: flex;
  align-items: left;
  gap: 14px;

  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;

  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 86px;
}

.ps-site-features .ps-block--site-features .ps-block__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  border-color: rgba(15, 23, 42, 0.14);
}

/* Icon badge */
.ps-site-features .ps-block__left{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;

  border-radius: 14px;
  background: linear-gradient(180deg, rgba(59,130,246,.12), rgba(99,102,241,.08));
  border: 1px solid rgba(59, 130, 246, 0.18);
  flex: 0 0 46px;
}

.ps-site-features .ps-block__left i{
  font-size: 20px;
  line-height: 1;
  color: #1d4ed8; /* modern blue */
}

/* Text */
.ps-site-features .ps-block__right h4{
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #0f172a;
}

.ps-site-features .ps-block__right p{
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.66);
}

/* Optional: hide edit icon in frontend (if you want) */
.ps-site-features .guideline-edit-link{
  display: none !important;
}

/* ===== Responsive ===== */
@media (max-width: 1199px){
  .ps-site-features .ps-block--site-features{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px){
  .ps-site-features .ps-block--site-features{
    grid-template-columns: 1fr;
  }
  .ps-site-features .ps-block--site-features .ps-block__item{
    padding: 16px;
  }
}
/* ===== Modern Dark Section Header ===== */
.ps-section__header{
    display: flex;
    align-items: center;
      background-color: var(--color-1st);
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Title */
.ps-section__header h3{
    position: relative;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-1st);
    letter-spacing: -0.3px;
}

/* Accent underline */
.ps-section__header h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 40px;
    height: 3px;
    background: var(--color-1st);
    border-radius: 2px;
}

/* Links container */
.ps-section__links{
    list-style: none;
    margin: 0;
    padding: 0;
}

.ps-section__links li{
    display: inline-block;
}

/* View All button style */
.ps-section__links a{
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;

    color: var(--color-1st);
    border: 1px solid var(--color-1st);
    border-radius: 30px;

    background: transparent;
    transition: all .25s ease;
}

/* Hover effect */
.ps-section__links a:hover{
    background: var(--color-1st);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 575px){
    .ps-section__header{
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* ===== Modern Category Card ===== */
.ps-block--category{
    position: relative;
    text-align: center;
    padding: 22px 18px;
    border-radius: 18px;
 border-color: var(--color-1st);
  
    border: 1px solid rgba(255,255,255,0.06);

    transition: all .3s ease;
    overflow: hidden;
}

/* Hover lift effect */
.ps-block--category:hover{
    transform: translateY(-6px);
    border-color: var(--color-1st);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Image */
.ps-block--category img{
    max-width: 120px;
    margin: 0 auto 14px;
    display: block;

    transition: transform .35s ease;
}

/* Image zoom on hover */
.ps-block--category:hover img{
    transform: scale(1.08);
}

/* Category name */
.ps-block--category p{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
    transition: color .25s ease;
}

/* Text color hover */
.ps-block--category:hover p{
    color: var(--color-1st);
}

/* Overlay link fix */
.ps-block--category .ps-block__overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Optional subtle top accent line */
.ps-block--category::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: var(--color-1st);
    transition: width .3s ease;
}

.ps-block--category:hover::before{
    width: 60%;
}
/* ===== Footer Main Background ===== */
.ps-footer{
    background: var(--color-1st);
    color: #fff;
}

/* All text inside footer */
.ps-footer,
.ps-footer p,
.ps-footer h1,
.ps-footer h2,
.ps-footer h3,
.ps-footer h4,
.ps-footer h5,
.ps-footer h6,
.ps-footer span,
.ps-footer li,
.ps-footer a{
    color: #fff !important;
}

/* Widget titles */
.ps-footer .widget-title{
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

/* Links hover effect */
.ps-footer a{
    transition: all .25s ease;
    opacity: .9;
}

.ps-footer a:hover{
    opacity: 1;
    text-decoration: underline;
}

/* Footer widgets spacing */
.ps-footer__widgets{
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Social icons */
.ps-footer .ps-list--social li a{
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all .3s ease;
}

.ps-footer .ps-list--social li a:hover{
    background: #fff;
    color: var(--color-1st) !important;
    border-color: #fff;
}

/* Copyright section */
.ps-footer__copyright{
    padding: 25px 0;
    font-size: 14px;
}

/* Payment images */
.footer-payments img{
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    margin: 5px;
}