/* FONT LINKE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/*
========================
DAFULT CSS start
========================
*/

body {	
    font-family: "Poppins", sans-serif;;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

:root {
    --poppins: "Poppins", sans-serif;
    --raleway: "Raleway", sans-serif;
}

h1,
h2,
h3,
h5,
h6, 
p {
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #AE6B32; 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 13px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #AE6B32; 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}


/*===================
HEADER AREA CSS START
=====================*/
.header-topbar-wrpper {
    padding-top: 12px;
    padding-bottom: 14px;
    box-shadow: 0 0 1px #707070;
}

.header-topbar-left p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--raleway);
}

.topbar-sociol-icon {
    text-align: right;
}

.topbar-sociol-icon li {
    display: inline-block;
    margin-left: 12px;
}

.topbar-sociol-icon li:first-child {
    margin-left: 0;
}

.topbar-sociol-icon li a img {
    filter: grayscale(100);
}

.main-header-wrpper {
    /*! padding: 20px 0; */
}

.main-header-left-wrpper ul,
.main-header-right-wrpper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header-left-wrpper ul li:first-child {
    cursor: pointer;
}

.main-header-left-wrpper ul li a {
    font-family: var(--poppins);
    font-weight: 300;
    font-size: 24px;
    color: #000000;
}

.mail-logo a img {
    width: 180px;
}

.main-header-right-wrpper ul li {
    cursor: pointer;
}

.search-modal input {
    width: 100%;
    border: none;
    outline: none;
}

.offcanvas-end {
	width: 530px !important;
}

.btn-close:focus {
	box-shadow: none !important;
}

#offcanvasRightLabel {
    font-family: var(--poppins);
    font-size: 22px;
    font-weight: 400;
}

.offcanvas-header {
    border-bottom: 1px solid #EDEDED;
}

.item-img-wrpper {
    width: 25%;
}

.item-img-wrpper img {
    width: 100%;
}

.item-desc-wrpper {
    width: 75%;
}

.card-items {
	padding-top: 10px;
	padding-bottom: 65px;
}

.singel-item {
    display: flex;
    padding: 35px 25px;
}

.item-desc-wrpper {
    padding-left: 20px;
}

.item-desc-wrpper p {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 300;
}

.increase-decrese {
    border: 1px solid #E2E2E2;
    border-radius: 25px;
    display: inline-block;
}

.increase-decrese ul {
    padding: 0px 19px;

}

.increase-decrese ul li {
    padding: 8px 0;
    display: inline-block;
    font-size: 20px;
    font-family: var(--poppins);
    font-weight: 600;
}

.increase-decrese {
    margin-top: 18px;
    margin-bottom: 10px;
}

#decrese,
#increase {
    cursor: pointer;
}

#decrese {
    padding-right: 10px;
}

#increase {
    padding-left: 10px;
}

#total {
    padding-left: 35px;
    padding-right: 35px;
    border-left: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
}

.item-desc-wrpper img {
    display: block;
    cursor: pointer;
}

.offcanvas-body {
	padding: 1rem 0rem !important;
}

.singel-item:nth-child(2) {
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}

.check-out-wrpper {
    padding: 25px;
    border-top: 1px solid #E2E2E2;
}

.check-out-top p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.check-out-top p span {
    font-family: var(--poppins);
    font-size: 22px;
    font-weight: 500;
}

.check-out-tagline p {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 13px;
}


.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.custom-checkbox input:checked + .checkmark {
    background-color: transparent;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.checkmark::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #0F0F0F;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.confirm-box label {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 300;
}

.view-card,
.check-outs {
    margin-top: 20px;
}

.view-card a,
.check-outs a {
    display: flex;
    justify-content: center;
    background-color: #EEEEEE;
    padding: 15px 0;
    border-radius: 36px;
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 500;
    color: #393637;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.check-outs a {
    color: #fff;
    background-color: #000000;
}

.SMN_effect-86 a:before, .SMN_effect-86 a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	border-top: 29px solid #3498db;
	border-bottom: 29px solid #3498db;
	transition: 0.5s;
}

.SMN_effect-86 a:before {
	border-right: 20px solid transparent;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.SMN_effect-86 a:after {
	border-left: 20px solid transparent;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.SMN_effect-86 a:hover:before {
	-webkit-transform: translateX(-30%);
	transform: translateX(-30%);
}

.SMN_effect-86 a:hover:after {
	-webkit-transform: translateX(30%);
	transform: translateX(30%);
}

.mega-menu-wrpper {
/*    display: none;*/
visibility: hidden;
}

.active-mega-menu {
/*    display: block;*/
visibility: visible;
}

.menu-box-wrpper {
    background-color: #fff;
    padding: 40px 60px;
}

.menu-box-wrpper {
    display: flex;
    /* align-items: center; */
    background: #fff;
}

.menu-items-wrpper,
.promotion-wrpper {
    width: 50%;
}

.menu-items-wrpper {
    display: flex;
    gap: 8%;
}

.cat-item,
.dog-item {
    width: 47%;
    border-right: 1px solid #E2E2E2;
}

.cat-item h4,
.dog-item h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
}

.cat-list li,
.dog-item li {
    margin-bottom: 3px;
}

.cat-list li:last-child,
.dog-item li:last-child {
    margin-bottom: 0;
}

.cat-list li a,
.dog-item li a {
    font-size: 18px;
    font-weight: 300;
    color: #878787;
}

.promotion-box {
    padding-left: 50px;
}

.promotion-top h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
}

.owl-prev {
	position: absolute;
	right: 44px;
	top: -50px;
}

.owl-next {
	position: absolute;
	right: 0;
	top: -50px;
}

.owl-prev i,
.owl-next i {
	width: 35px !important;
	height: 35px !important;
	border: 1px solid #E3E3E3 !important;
	border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#m-header {
	position: relative;
	padding: 20px 0;
}
.mega-menu-wrpper {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
    z-index: 999;
}

.sm-menu-icon {
    cursor: pointer;
}

.mobile-logo img {
    width: 120px;
}

.side-menu-body {
    padding-left: 20px !important;
    padding-right: 20px !important;
    
}

.nav-link {
    color: #0F0F0F !important;
    font-family: var(--poppins) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    padding-bottom: 0 !important;
}




/*=================
HERO AREA CSS START
===================*/
.hero-area {
    background: url(images/hero-banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    padding: 300px 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-title h2 {
    font-family: var(--raleway);
    font-size: 50px;
    color: #FFFFFF;
}

.hero-title h2 span {
    font-weight: 700;
}

.hero-desc p {
    font-family: var(--raleway);
    font-size: 28px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 868px;
    margin-top: 15px;
    margin-bottom: 43px;
}

.hover-effect a {
    position: relative;
    display: inline-flex;
    padding: 20px 40px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    overflow: hidden;
    font-size: 30px;
    font-family: var(--raleway);
    font-weight: 600;
    border: 1px solid #94989D;
}

.hover-effect a span {
    position: relative;
    z-index: 5555;
}

.hover-effect a::before {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    background-color: #AB9A8A;
}

.hover-effect a:hover {
    border-color: #AB9A8A;
}

.hover-effect a:hover::before {
    width: 700px;
    height: 700px;
    transition: width 0.5s, height 0.5s;
}


.gallery-image img {
    width: 100%;
    
}

.singel-gallery-item {
    position: relative;
}

.gallery-decs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 20px 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) -17%, rgba(0, 0, 0, 0.6) 44%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.gallery-decs h3 {
    font-family: var(--raleway);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.gallery-decs a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--raleway);
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    transition: 0.2s;
}

.gallery-decs a:hover {
    color: #DC4E5C;
}



/*=========================
BEST SELLING AREA CSS START
===========================*/
.best-selling-area {
    padding-top: 120px;
    padding-bottom: 80px;
}

.best-selling-title h2 {
    font-family: var(--raleway);
    font-weight: 400;
    font-size: 55px;
    text-align: center;
    text-transform: uppercase;
}

.best-product-wrpper {
    margin-top: 50px;
}

.product-img img {
    width: 180px;
    height: 220px;
}

.product-desc h5 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 22px;
    color: #393637;
}

.product-desc p {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 300;
    color: #393637;
    margin: 7px 0 10px 0;
}

.product-desc span {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.product-desc span del {
    color: #CECECE;
    margin-left: 30px;
}


/*==================
PET GALLERY AREA CSS
====================*/
.pet-gallery-area {
    padding: 0;
}

.pet-gallery-wrpper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 56px;
}

.single-pet-image:first-child {
    grid-row-start: 1;
    grid-row-end: 3;
    position: relative;
}

.single-pet-image:nth-child(3) {
    position: relative;
}

.single-pet-image:first-child figure,
.single-pet-image:nth-child(3) figure {
    position: absolute;
    width: 100%;
    height: 100%;
}

.single-pet-image:nth-child(3) {
    grid-column: 3 /4;
    grid-row: 1 / span 2;
}

.single-pet-image {
    position: relative;
}

.pet-title {
    position: absolute;
    top: 0;
}

.single-pet-image figure {
    margin: 0;
}

.single-pet-image figure img {
    width: 100%;
    height: 100%;
}

.pet-title {
    padding: 30px 0 0 30px;
}

.pet-title h3 {
    font-family: var(--raleway);
    font-size: 50px ;
    font-weight: 700;
    color: #000000;
}

.pet-title a {
    font-family: var(--raleway);
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    display: flex;
    align-items: center;
}

.pet-title a i {
    margin-left: 8px;
}

.pet-title a:hover {
    color: #DC4E5C;
}


/*======================
NEW ARRIVALS AREA CSS
=======================*/
.new-arrival-area {
    padding: 120px 0;
}


/*======================
SERVICES AREA CSS
=======================*/
.services-area {
    padding: 100px 0 80px 0;
    background-color: #F8F8F8;
}

.single-service {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.service-img-wrpper {
    width: 80px;
}

.service-img-wrpper img {
    width: 100%;
}

.service-desc-wrpper {
    width: calc(100% - 50px);
}

.service-desc-wrpper h5 {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 600;
    color: #393637;
    margin-bottom: 4px;
}

.service-desc-wrpper p {
    font-size: 14px;
    font-family: var(--poppins);
    font-weight: 300;
    color: #393637;
}


/*===================
TESTIMONIAL AREA CSS
=====================*/
.testimonial-area {
    padding-top: 130px;
    padding-bottom: 100px;
    background: url(images/testimonial-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.testimonial-topbar h3 {
    font-family: var(--raleway);
    font-size: 30px;
    font-weight: 700;
    color: #100C08;
}

.testimonial-topbar h2 {
    font-family: var(--raleway);
    font-size: 45px;
    font-weight: 400;
    color: #100C08;
}

.testimonial-slider-wrpper {
    margin-top: 80px;
}

.single-testimonial {
    display: flex;
    gap: 20px;
}

.client-img img {
    width: 160px !important;
}

.client-fdback h3 {
    font-family: var(--poppins);
    font-size: 28px;
    font-weight: 600;
    color: #393637;
    margin-bottom: 8px;
}

.client-fdback span i {
    color: #F9B700;
    margin-right: 8px;
}

.client-fdback p {
    max-width: 487px;
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 300;
    color: #393637;
    margin-bottom: 78px;
}

.owl-theme .owl-dots {
	text-align: left;
	padding-left: 21% !important;
}



/*=======================
OUR BRAND AREA CSS
=========================*/
.brand-area {
    padding: 120px 0 100px 0;
}

.brand-top h3 {
    font-family: var(--raleway);
    font-size: 55px;
    font-weight: 400;
    color: #100C08;
    text-align: center;
}

.brand-logos {
    margin-top: 50px;
}

.single-brand-logo figure {
    margin: 0;
}

.single-brand-logo figure img {
    width: 100%;
}



/*=======================
FOOTER AREA CSS
=========================*/
.footer-area {
    padding-top: 200px;
    padding-bottom: 130px;
    background: url(images/rs-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000000;
}

.company-logo a img {
    width: 200px;
}

.company-address {
    margin-top: 27px;
    margin-bottom: 40px;
}

.company-address li span,
.contact-info li,
.copy-right p {
    font-family: var(--raleway);
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.contact-info li a {
    color: #FFFFFF;
}

.copy-right {
    margin-top: 47px;
}

.footer-social-icon {
    margin-top: 30px;
}

.footer-social-icon {
    display: flex;
    gap: 10px;
}




/*============================
PRODUCT DETAI CAT PAGE CSS
============================= */



/*============================
SHOPPING CAT AREA CSS
============================= */
.shopping-cat-area {
    
    background: url(images/shopping-cat.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.shopping-cat-overlay {
    padding: 60px 0;
    background-color: rgba(147, 147, 147, 0.3);
}

.shopping-cat-overlay p {
    font-family: var(--raleway);
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}



/*============================
PRODUCT TABEL AREA CSS
============================= */
.product-table-area {
    padding: 80px 0;
}

.product-table tr {
    border-bottom: 1px solid #D4D4D4;
}

.product-table tr:first-child th {
    padding-bottom: 11.5px;
}

.product-row th {
    padding: 20.5px 0;

}

.product-row th:first-child {
    display: flex;
    align-items: center;
    gap: 45px;
}

.table-heading th span {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 500;
    color: #393637;
    text-transform: uppercase;
}

.product-row th > img {
    width: 140px;
}

.product-row th span img {
    width: 20px;
}

.product-heading p {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 300;
    color: #393637;
    margin-bottom: 22.4px;
}

.product-heading img {
    cursor: pointer;
}

.product-row th span {
    font-size: 18px;
    font-weight: 500;
    color: #393637;
}


/*=========================
CHECKOUT AREA CSS 
===========================*/
.checkout-area {
    padding-top: 80px;
    padding-bottom: 120px;
}

.note-wrpper label {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 400;
    color: #393637;
    margin-bottom: 30px;
}

.note-wrpper textarea {
    display: block;
    width: 100%;
    resize: none;
    border: 1px solid #D4D4D4;
    outline: none;
    padding: 19px 20px;
    margin-bottom: 29px;
}

.coupon-wrpper p {
    font-size: 20px;
    font-weight: 400;
    color: #393637;
}

.coupon-wrpper label {
    font-size: 20px;
    font-weight: 400;
    color: #8F8F8F;
    margin-top: 11px;
    margin-bottom: 24px;
}

.coupon-wrpper input {
    width: 100%;
    outline: none;
    border: 1px solid #D4D4D4;
    padding: 13px 20px;
    color: #D4D4D4;
}

.checkout-top h4 {
    font-size: 23px;
    font-weight: 500;
    color: #393637;
}

.checkout-top > span {
    font-size: 17px;
    font-weight: 400;
    color: #8F8F8F;
    margin-top: 27px;
    margin-bottom: 21px;
    display: block;
}

.shoppin-cat-chekout span {
    font-size: 17px;
    font-weight: 400;
    color: #8F8F8F !important;
}

.shoppin-cat-chekout {
    justify-content: space-between;
}

.s-payment-btn .check-outs a {
    text-transform: uppercase;
}

.self-aling {
    position: relative;
}

.checkout-right {
    position: absolute;
    width: 94%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.note-wrpper label,
.coupon-wrpper label {
    cursor: pointer;
}


/*========================
ESTIMATE SHOPPING AREA CSS
==========================*/
.estimate-shopping-area {
    padding: 115px 0;
}

.estimate-shopping-wrpper {
    border: 1px solid #D4D4D4;
    padding: 100px 62px 67px 62px;
    position: relative;
}

.border-overthro {
    position: absolute;
    top: -23px;
    left: 35%;
}

.border-overthro span {
    text-align: center;
    background-color: #ffffff;
    color: #393637;
    font-size: 30px;
    font-weight: 500;
    padding: 4px 50px;
}

.single-item label {
    font-size: 20px;
    font-weight: 300;
    color: #8F8F8F;
}

.select-option {
    padding: 10px 20px;
    border: 1px solid #D4D4D4;
    border-radius: 36px;
    margin-top: 17px;
}

.select-option select,
.select-option input {
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
}

.select-option select,
.select-option select option {
    color: #333333;
    font-size: 20px;
}

#rempad {
    padding: 0;
}

.select-option button {
    background-color: #333333;
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 36px;
    color: #ffffff;
    transition: 0.2s;
}

.select-option button:hover {
    background-color: transparent;
    color: #000000;
    box-shadow: 0 0 5px #000;
}




/*======================
PAYMENT PAGE CSS HERE
======================*/
.payment-page-wrpper {
    display: flex;
    border-top: 1px solid #A2A2A2;
}

.payment-form-wrpper {
    width: 50%;
    padding-left: calc((100% - 1320px) / 2);
    padding-top: 41px;
    padding-right: 55px;
    padding-bottom: 150px;
}

.contact-email-wrpper p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-email-wrpper p span {
    font-size: 24px;
    font-weight: 500;
    color: #393637;
}

.contact-email-wrpper p a {
    font-size: 24px;
    font-weight: 400;
    color: #006BC8;
    text-decoration: underline;
}

.email-box {
    margin: 20px 0;
}

.email-box input {
    padding: 19px 20px;
    font-size: 16px;
    font-weight: 300;
    color: #D4D4D4;
    width: 100%;
    border: 1px solid #D4D4D4;
    border-radius: 3px;
    outline: none;
}

.contact-email-wrpper .confirm-box .custom-checkbox {
    color: #8F8F8F;
}

.delivery-info-wrpper {
    padding-top: 40px;
}

.dinfo-title p {
    font-size: 24px;
    font-weight: 500;
    color: #393637;
}

.shipping-wrpper {
    padding-top: 20px;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-weight: 300;
    color: #333333;
    border: 1px solid #D4D4D4;
    padding: 22px 20px;
}

.custom-radio input {
    display: none; /* Hide the default radio button */
}

.radio-btn {
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 50%;
    margin-right: 10px;
    transition: border-color 0.3s;
}

.custom-radio input:checked + .custom-radio {
    border: 1px solid #007BFF;
}

.custom-radio input:checked + .radio-btn {
    border-color: #007BFF;
    outline: 5px solid #007BFF; /* Change border color when checked */
}

.custom-radio img {
	margin-left: auto;
}

.custom-radio:first-child {
    border-radius: 5px 5px 0 0;
    border-bottom: none;
}

.custom-radio:last-child {
    border-radius: 0 0 5px 5px;
}

.personal-info-wrpper {
    padding-top: 40px;
}

.single-info-box {
    padding: 10px 20px;
    border: 1px solid #D4D4D4;
}

.single-info-box label {
    font-size: 14px;
    font-weight: 300;
    color: #D4D4D4;
    display: block;
}

.single-info-box select {
    border: none;
    background-color: transparent;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: #333333;
}

.single-info-box {
    border-radius: 5px;
}

.name-input-field {
    margin: 20px 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.first-name,
.last-name,
.address-input-field {
    border: 1px solid #D4D4D4;
    border-radius: 3px;
    
}

.first-name input,
.last-name input,
.address-input-field input {
    padding: 19px 20px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: #D4D4D4;
}

.mtsp {
    margin: 20px 0;
}

.city-state-zip {
    display: flex;
    gap: 20px;

}

.select-city,
.select-state,
.zip-code {
    width: 33%;
    padding: 19px 20px;
    border: 1px solid #D4D4D4;
    border-radius: 3px;
}

.select-city select,
.select-state select {
    width: 100%;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
}

.zip-code input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: #D4D4D4;
}

.magtb {
    margin: 20px 0;
}

.change-fcolor {
    font-size: 20px;
    font-weight: 400;
    color: #8F8F8F;
}

.shipping-method-wrpper p {
    font-size: 24px;
    font-weight: 500;
    color: #393637;
    margin-top: 29px;
    margin-bottom: 22px;
}

.custom-radio b {
    margin-left: auto;
    font-size: 20px;
    font-weight: 300 !important;
    color: #333333;
}

.payment-options {
    margin-top: 59px;
}

.payment-options p {
    font-size: 24px;
    font-weight: 500;
    color: #393637;
    margin-bottom: 6px;
}

.payment-options span {
    font-size: 20px;
    font-weight: 300;
    color: #8F8F8F;
}

.accordion-title {
    border: 1px solid #D4D4D4;
    /* border-radius: 5px 5px 0 0; */
    transition: 0.2s;
}

.accordion-content {
    border-left: 1px solid #D4D4D4;
    border-right: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
}

.single-method .open {
    border: 1px solid #006BC8;
}

.single-method p {
    font-size: 20px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 0;
}

.accordion-content {
    padding: 25px;
    background-color: #F9F9F9;
}

.card-number input,
.card-name input,
.date input,
.secure input {
    outline: none;
    border: 1px solid #D4D4D4;
    border-radius: 3px;
    padding: 19px 20px;
    font-size: 16px;
    font-weight: 300;
    color: #D4D4D4;
    width: 100%;
}

.accordion-title {
    padding: 23px 25px 22px 20px;
    display: flex;
    align-items: center;
    /* gap: 15px; */
    cursor: pointer;
}

.accordion-title img {
    margin-left: 5px;
}

.date-security {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}

#accordion {
    padding-top: 20px;
}

.accordion-title span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #D4D4D4;
    margin-right: 15px;
}

.open span {
    border: 5px solid #006BC8;
}

.accordion-title p {
    display: inline;
}

.cicon {
    margin-left: auto !important;
}

.payNow a {
    font-size: 18px;
    font-weight: 500;
}

.payment-now-btn {
    margin-top: 50px;
}


.id-single-product-wrpper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 50px;
}



.choosen-product-area {
    width: 50%;
    background-color: #F5F5F5;
    padding-left: 70px;
    padding-right: calc((100% - 1320px) / 2);
    padding-top: 43px;
}

.single-product-wrpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.product-img-title-wrpper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sproduct-img img {
    width: 145px;

}

.sproduct-img {
    position: relative;
}

.sproduct-img span {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    top: -20px;
    right: -19px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
}

.sprodunt-title p {
    max-width: 284px;
    font-size: 20px;
    font-weight: 300;
    color: #393637;
}

.sproduct-price span {
    font-size: 20px;
    font-weight: 500;
    color: #393637;
}

.choosen-product-top {
    padding-bottom: 50px;
}

.subTotalArea {
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    padding-top: 70.5px;
    padding-bottom: 22.5px;
}

.apply-coupon-button {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.input-box {
    width: calc(100% - 175px);
}

.input-box input {
    width: 100%;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 300;
    color: #D4D4D4;
    outline: none;
    border: 1px solid #D4D4D4;
}

.coupon-button button{
    width: 175px;
    padding: 15px 0;
    background-color: #EFEFEF;
    border: 1px solid #D4D4D4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--poppins);
    font-size: 20px;
    color: #8F8F8F;
}

.billing-info {
    padding-top: 56px;
}

.billing-info p {
    font-size: 24px;
    font-weight: 300;
    color: #393637;
    display: flex;
    justify-content: space-between;
}

.billing-info p:first-child {
    margin-bottom: 11px;
}

.payable-ammount {
    padding-top: 19.5px;
}

.payable-ammount p {
    font-size: 24px;
    font-weight: 500;
    color: #393637;
    display: flex;
    justify-content: space-between;
}



/*===========================
PRODUCT DETAI PAGE CSS START
=============================*/

/*===============================
PRODUCT DETAIL BRADCOME AREA CSS
=================================*/
.product-bradcome-area {
    padding: 44px 0;
    background-color: #F6F6F6;
}

.product-bradcome-wrpper ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 300;
    color: #393637;
    text-transform: capitalize;
}

.product-bradcome-wrpper ul li:nth-child(2) {
    margin: 0 22.5px;
}

.product-bradcome-wrpper ul li:nth-child(2) i {
    font-size: 16px;
}

/*=================================
PRODUCT CAROUSEL AREA CSS
===================================*/
.product-carousel-area {
    padding: 60px 0;
    padding-bottom: 0;
}

.carousel-wrpper {
    display: flex;
    gap: 30px;
}

.produtc-small-img img {
    width: 100px;
    display: block;
    cursor: pointer;
    margin: 15px 0;
    opacity: 0.7;
}

.produtc-small-img img:first-child {
    margin-top: 0;
}

.produtc-small-img img:last-child {
    margin-bottom: 0;
}

.produtc-small-img img:hover {
    opacity: 1;
}

.product-big-img img {
	width: 100%;
    height: 520px;
}

.title-price-box h3 {
    font-size: 26px;
    font-weight: 500;
    color: #393637;
    margin-bottom: 13px;
}

.title-price-box span {
    font-size: 20px;
    font-weight: 500;
    color: #393637;
}

.title-price-box p {
    margin-top: 34px;
    font-size: 18px;
    color: #8F8F8F;
}

.color-wrpper {
    margin-top: 39px;
}

.color-wrpper > span {
    font-size: 20px;
    font-weight: 500;
    color: #393637;
}

.color-wrpper ul {
    display: flex;
    gap: 15px;
    margin-top: 22px;
}

.color-wrpper ul li {
    cursor: pointer;
    padding: 10px 33px;
    border: 1px solid #D4D4D4;
    border-radius: 3px;
    font-size: 18px;
    color: #D4D4D4;
    font-weight: 400;
    transition: 0.3s;
}

.color-wrpper ul li:hover,
.size-box li:hover,
.activeColor {
    background-color: #333333;
}

.color-wrpper ul li:hover span,
.size-box li:hover span,
.activeColor span {
    color: #ffffff;
}

.size-box p {
    margin-top: 44px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 22px;
}

.size-box li {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #D4D4D4;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.3s;
}

.add-product-favourite {
    display: flex;
    align-items: center;
    gap: 20px;
}

.size-box li:last-child {
    margin-right: 0;
}

.addto-card {
    display: inline-block;
    margin-top: 18px;
    margin-bottom: 10px;
}

.atcard {
    padding: 0px 45px !important; 
    cursor: pointer;
    font-size: 18px;
    color: #393637;
    font-weight: 500;
}

.addfavorite {
    border: none !important;
}

.addfavorite ul li i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #D4D4D4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.p-information ul li {
    font-size: 19px;
    font-weight: 500;
    color: #393637;
}

.p-information ul li span {
    color: #8F8F8F;
}


























/*==========================
PRODUCT DETAI TAB AREA CSS
============================*/
.product-derai-tab-area {
    padding: 100px 0;
    padding-bottom: 0;
}

.tabs {
/*    width: 600px;*/
    margin: 20px auto;
}

.tab-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 64px;
    gap: 20px;
}

.tab-links li {
    
}

.tab-links li a {
    display: block;
    padding: 13px 56px;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 36px;
    font-size: 20px;
    font-weight: 300;
    color: #8F8F8F;
}

.tab-links li.active a {
    background: #f1f1f1;
    color: #393637;
}

.tab-content {
    padding: 0px;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.tab p {
    font-size: 20px;
    font-weight: 300;
    color: #8F8F8F;
    margin-bottom: 20px;
}


/*===============================
PRODUCT CATEGORY PAGE CSS HERE
=================================*/




/*===============================
PRODUCT CATEGORY BANNER CSS 
=================================*/
.category-banner-area {

    background: url(images/product-category-banner.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.category-banner-overlay {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

.category-bradcome {
    text-align: center;
}

.category-bradcome li {
    display: inline-block;
}

.category-bradcome li span {
    font-family: var(--raleway);
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

.category-bradcome li:nth-child(2) i {
    color: #ffffff;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 14px;
}

.category-banner-wrpper h3 {
    font-family: var(--raleway);
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-top: 24px;
}

.caterogy-page-post-wrpper {
    padding-top: 90px;
    padding-bottom: 100px;
}

.filter-title h4 {
    font-size: 26px;
    font-weight: 500;
    color: #393637;
}

.filter-title h4 img {
    margin-right: 11px;
}

.filter-select {
    padding: 13px 25px;
    border: 1px solid #D4D4D4;
    border-radius: 36px;
}

.filter-select select {
    border: none;
    background-color: transparent;
    width: 100%;    
}

.filter-select select option {
    font-size: 20px;
    font-weight: 300;
    color: #393637;
}

.availability p,
.product-type p,
.caterogy-brand p {
    font-size: 20px;
    font-weight: 400;
    color: #393637;
    position: relative;
}

.availability p::after,
.product-type p::after,
.caterogy-brand p::after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #D4D4D4;
    bottom: -7px;
}

.availability-options {
    margin-top: 26px;
}

.availability-input label,
.product-type-input label,
.caterogy-brand-input label {
    margin-bottom: 15px;
}

.cpost-img img {
    width: 100%;
    height: 100%;
}

.cpost-title-price h3 {
    font-size: 22px;
    font-weight: 500;
    color: #393637;
    margin: 26px 0 28px 0;
}

.cpost-title-price span {
    font-size: 20px;
    font-weight: 500;
    color: #393637;
}

.cpost-img {
    position: relative;
    overflow: hidden;
    height: 360px;
}

.cpost-img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: -100%;
    transition: 0.3s;
}

.cpost-img:hover .cpost-img-overlay {
    top: 0;
}

.overlay-content-wrpper .increase-decrese {
    background-color: #ffffff;
}

.overlay-content-wrpper .increase-decrese ul li {
    color: #393637;
}

.overlay-buttons {
	text-align: center;
}

.specail-icon ul li:first-child {
    margin-bottom: 15px;
}

.specail-icon ul li img {
    width: 27px;
    cursor: pointer;
}

.cpost-img-overlay {
    padding: 30px;
}

.quick-view button,
.atc-btn button {
    font-size: 18px;
    font-weight: 300;
    color: #393637;
    padding: 12px 41px;
    border: 1px solid #D4D4D4;
    border-radius: 36px;
    background-color: #ffffff;
    margin: 14px 0;
}

.overlay-buttons .increase-decrese {
    margin: 14px 0;
}

.category-single-post {
    margin-top: 50px;
}

.category-product-post {
    padding-bottom: 100px;
    border-bottom: 1px solid #D4D4D4;
}

.product-post-pagination {
    padding-top: 50px;
    display: flex;
    gap: 20px;
}

.product-post-pagination li a {
    padding: 5px 18px ;
    border: 1px solid #B5B5B5;
    font-size: 20px;
    font-weight: 300;
    color: #B5B5B5;
    transition: 0.2s;
}

.product-post-pagination li a:hover,
.product-post-pagination li .page-active {
    color: #000000;
}

.product-post-pagination li:last-child a {
    border: none;
}

select, 
select option {
    cursor: pointer;
}























#also-like-wrpper {
    margin-top: 0;
}

.also-like-title h2 {
    font-family: var(--raleway);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}












