.myshop-wrapper {
	margin: auto;
}
/* TOPBAR START */
.myshop-topbar {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 40px;
}
.myshop-topbar .woocommerce-result-count {
	font-family: "Poppins", Sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	color: #000000;
	margin-top: 0;
  	margin-bottom: 0;
}
.myshop-sort .woocommerce-ordering {
	margin-top: 0;
  	margin-bottom: 0;
}
.myshop-sort-dropdown {
	position: relative;
	width: auto;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
	font-weight: 300;
}
.myshop-sort-current {
	cursor: pointer;
	background: #fff;
	color: #000;
}
.myshop-sort-current .arrow {
	float: right;
	padding-left: 10px;
	line-height: 16px;
}
.myshop-sort-list {
	position: absolute;
	top: 100%;
	right: 0;
	width: 260px;
	background: #fff;
	border: 1px solid #E3E3E3;
	padding: 0;
	margin: 0;
	display: none;
	z-index: 99;
}
.myshop-sort-dropdown.open .myshop-sort-list {
	display: block;
}
.myshop-sort-list li {
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: start;
	cursor: pointer;
	color: #000;
	transition: .3s ease;
}
.myshop-sort-list li:hover {
	background: #000;
	color: #fff;
}
.myshop-sort-list li.active {
	background: #000;
	color: #fff;
}
.orderby-hidden {
	display: none;
}
/* TOPBAR END */

.myshop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 40px;
	border-bottom: 1px solid #E3E3E3;
	margin-bottom: 30px;
}

.myshop-title {
	font-family: Poppins, Sans-serif;
	font-size: 28px;
	font-weight: 500;
	text-transform: uppercase;
	color: #000000; 
	letter-spacing: 1px;
	margin-top: 0;
	margin-bottom: 0;
}

/* MATERIAL START */
.myshop-materials {
	display: flex;
}
.myshop-material-title {
	font-family: Poppins, Sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000000; 
	letter-spacing: 1px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.myshop-materials-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.myshop-material-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-sizing: border-box;
    font-family: Poppins, Sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    text-transform: uppercase;
    border-top: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;
}

/* Last column */
.myshop-material-item:nth-child(4n) {
    border-right: 1px solid #E3E3E3;
}

/* Last item */
.myshop-material-item:last-child {
    border-right: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
}

/* Bottom border for the last row */
.myshop-materials-list > .myshop-material-item:nth-last-child(-n+4) {
    border-bottom: 1px solid #E3E3E3;
}

.myshop-material-item:hover,
.myshop-material-item.active {
    border: 1px solid #000 !important;
    color: #F6851F;
    position: relative;
    z-index: 2;
}

@media (max-width:1024px){

    .myshop-materials-list {
        grid-template-columns:repeat(2,1fr);
    }

    .myshop-material-item:nth-child(4n){
        border-right:0;
    }

    .myshop-material-item:nth-child(2n){
        border-right:1px solid #E3E3E3;
    }

    .myshop-materials-list>.myshop-material-item:nth-last-child(-n+2){
        border-bottom:1px solid #E3E3E3;
    }
}

@media (max-width:767px){

    .myshop-materials-list{
        grid-template-columns:1fr;
    }

    .myshop-material-item{
        border-right:1px solid #E3E3E3;
        border-bottom:0;
    }

    .myshop-material-item:last-child{
        border-bottom:1px solid #E3E3E3;
    }
}

/* MATERIAL END */

.myshop-layout {
	display: flex;
    flex-wrap: nowrap;
	padding-left: 40px;
	padding-right: 40px;
	margin-bottom: 7%;
}
/* SIDEBAR START */
.myshop-sidebar {
	width: calc(100% / 5);
	flex: 0 0 auto;
	padding-top: 25px;
	padding-right: 20px;
}
.shop-widget-title {
    position: relative;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    color: #000;
}
.shop-widget-title{
    position:relative;
}

.shop-widget-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:#000;

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .35s ease;
}

.shop-widget-title::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#E3E3E3;
}

.product-category-widget.active .shop-widget-title::after{
    transform:scaleX(1);
}
.category-toggle {
    font-size: 20px;
}
.shop-widget-content {
    overflow:hidden;

    transition:
        max-height .35s ease,
        opacity .25s ease;
}
.product-category-widget ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
	margin-bottom: 40px;
}
.product-category-widget li {
    margin-bottom: 12px;
}
.product-category-widget li a {
    color: #000000;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
}
.product-category-widget li.current-cat > a {
    font-weight: 500;
}
.product-category-widget li a:hover {
    font-weight: 500;
}
/* SIDEBAR END */

.myshop-products {
	flex: 1 1 auto;
}

.myshop-products ul.products {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: flex-start;
	align-items: stretch;
	--atc-block-gap: 6px;
	border-top:1px solid #E3E3E3;
    border-left:1px solid #E3E3E3;
}

.myshop-products ul.products li.product {	
    position: relative;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
	box-sizing: border-box;
	width: calc(100% / 4);
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	background-color: #f5f5f5;
	border-right:1px solid #E3E3E3;
    border-bottom:1px solid #E3E3E3;
}

.myshop-products ul.products li.product:hover{
    z-index:5;
	border: 1px solid #000;
}

.myshop-product-image {
    position: relative;
    overflow: hidden;
}

.myshop-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
	position: relative;
}

.myshop-product-image img.primary-image {
    opacity: 1;
    z-index: 1;
}

.myshop-product-image img.secondary-image {
    opacity: 0;
    z-index: 2;
	display: none;
}
.myshop-product-card:hover img.primary-image {
    opacity: 0;
}

.myshop-product-card:hover img.secondary-image {
    opacity: 1;
	position: absolute;
    inset: 0;
	display: block;
}

.myshop-product-card:hover img.primary-image,
.myshop-product-card:hover img.secondary-image {
    transform: scale(1.03);
}

.myshop-product-info {
	padding: 30px 40px 50px;
}

.myshop-product-title {
	color: #000000;
	font-family: "Bellefair", Sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	margin: 0;
}

.myshop-product-title:hover {
	color: #F6851F;
}

.myshop-product-card {
	position: relative;
	overflow: hidden;
}

.myshop-product-actions {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: flex;
	gap: 10px;
	opacity: 0;
	transform: translateY(20px);
	transition: .35s ease;
	z-index: 5;
}

.myshop-product-card:hover .myshop-product-actions {
	opacity: 1;
	transform: translateY(0);
}

.myshop-action-btn {
	font-family: "Poppins", Sans-serif;
	font-size: 11px;
	font-weight: 300;
	flex: 1;
	height: 40px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: uppercase;
	color: #000000;
	text-decoration: none;
	border: 1px solid #E3E3E3;
	transition: .3s;
}

.myshop-action-btn:hover {
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

.myshop-action-btn .icon img {
	width: 15px !important;
	position: relative !important;
	margin-bottom: 0 !important;
}

.myshop-action-btn.quick-view-btn:hover .icon img {
	content: url("https://sunperryv2.myuatsite.com/wp-content/uploads/2026/07/product-icons-eye-white.webp");
}

.myshop-action-btn.enquiry-btn:hover .icon img {
	content: url("https://sunperryv2.myuatsite.com/wp-content/uploads/2026/07/product-icons-email-white.webp");
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
    content: none;
}

.myshop-products nav.woocommerce-pagination {
	position: relative;
	margin-top: 25px;
	display: flex;
	justify-content: start;
}

.myshop-products nav.woocommerce-pagination ul {
	border: none;
}

.myshop-products nav.woocommerce-pagination ul li {
	border: none;
}

.myshop-products nav.woocommerce-pagination ul li span.current {
	color: #fff !important;
	background-color: #000;
	border-color: #000;
}

.myshop-products nav.woocommerce-pagination ul li a.page-numbers, 
.myshop-products nav.woocommerce-pagination ul li a.post-page-numbers, 
.myshop-products nav.woocommerce-pagination ul li span.page-numbers, 
.myshop-products nav.woocommerce-pagination ul li span.post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: solid 1px #000;
	padding: 0;
	color: #000;
}

.myshop-products nav.woocommerce-pagination ul li a:focus, 
.myshop-products nav.woocommerce-pagination ul li a:hover {
	border: solid 1px #F6851F;
	background-color: #F6851F;
	color: #fff;
}

.myshop-products nav.woocommerce-pagination ul.page-numbers li,
.myshop-products nav.woocommerce-pagination ul.post-page-numbers li {
	display: block;
	position: relative;
	margin: 2.5px;
}

.myshop-products nav.woocommerce-pagination .page-numbers.prev,
.myshop-products nav.woocommerce-pagination .page-numbers.next {
    font-size: 0;
}

.myshop-products nav.woocommerce-pagination .page-numbers.prev::before {
    content: "⌵";
    font-size: 16px;
	display: inline-block;
    transform: rotate(90deg);
}

.myshop-products nav.woocommerce-pagination .page-numbers.next::before {
    content: "⌵";
    font-size: 16px;
	display: inline-block;
    transform: rotate(-90deg);
}

.myshop-products .woocommerce-info {
	color: #000000;
	text-decoration: none;
	font-family: "Poppins", Sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	border-top-color: #000;
}
.myshop-products .woocommerce-info:before {
  	color: #000;
}
@media (max-width: 1024px) {
	.myshop-header {
		display: block;
		padding: 30px;
	}
	.myshop-header-left {
		margin-bottom: 30px;
	}
	.myshop-layout {
		padding-left: 20px;
  		padding-right: 20px;
	}
	.myshop-products ul.products li.product {
		width: calc(100% / 3);
	}
	.myshop-product-info {
		padding: 30px 30px 40px;
	}
	.myshop-product-actions {
		display: block;
	}
}
@media (max-width: 767px) {
	.myshop-header {
		padding: 30px 20px;
	}
	.myshop-materials {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		width: 100%;
	}

	.myshop-material-item {
		width: auto;
		padding: 10px 5px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-right: 1px solid #E3E3E3;
		border-bottom: 1px solid #E3E3E3;
	}

	.myshop-material-name {
		font-size: 11px;
		line-height: 14px;
		margin-top: 8px;
	}
	.myshop-layout {
		display: block;
	}
	.myshop-products ul.products li.product {
		width: calc(100% / 2) !important;
	}
	.myshop-product-info {
		padding: 20px 20px 30px;
	}
	.myshop-sidebar {
		width: calc(100% / 1);
		margin-bottom: 30px;
	}
}