/*
 Theme Name: Urban Focus
 Description: Urban Focus Appliances styles
 Author: Public Methods
 Template: woostify
 Version: 1.0.2
*/

/* Import parent theme styles */
 :root {
    --green: #68BB00;
    --yellow: #ffcc00;
    --navy: #1b4075;
    --white: #ffffff;
    --light: #f5f8f0;
    --grey: #e8edf2;
    --text: #111827;
    --muted: #6b7280;
    --radius: 16px;
  }
.wppb-row{
	overflow-x: unset!important;
}
body{
  font-family: 'DM Sans', sans-serif!important;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Bebas Neue', sans-serif!important;
}
.products .product:not(.product-category){
  border: 2px solid var(--grey);
  transition: all 0.25s;
  border-radius: var(--radius);
}
.products .product .price .amount{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem!important;
  color: var(--navy)!important;
}
.products .product:not(.product-category):hover{
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27,64,117,0.12);
}
.woocommerce-loop-product__title{
  font-size: 1.2rem!important;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  color: var(--navy)!important;
}
.woocommerce-loop-category__title .count{
	display: none;
}

.product-loop-image-wrapper{
  height: auto;
}
.product .product-loop-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product .product-loop-image:hover{
  transform: scale(1.07);
}
.product .animated-meta{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product_title,.entry-title{
  font-size: 48px!important;
}
.products .product-category img{
   width: 100px;
   transition: all 0.25s;
}
.products .product-category img:hover{
  transform: scale(1.13);
}
.pm-hero{
  margin-top: 64px;
}
.primary-navigation a:hover, .site-tools .tools-icon:hover{
  color: var(--e-global-color-woostify_color_6)!important;
}
.wa-order-button{
  margin-top:16px
}
.ct-category {
    margin-bottom: 3rem;
}
.ct-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ct-view-all {
    font-size: 0.9rem;
    text-decoration: none;
}

.ct-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.ct-post-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ct-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.ct-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.ct-title {
    padding: 0.75rem;
    font-size: 1rem;
    color: #111;
}

.pm-attribute-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pm-pill {
    display: inline-block;
    padding: 2px 12px;
    background: transparent;
	border: 2px solid var(--navy);
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.pm-pill:hover {
    background:  var(--navy);
    color: #fff;
}