@charset "UTF-8";
/*
Theme Name: Copycatgo
Theme URI: 
Author: Connect and Conquer
Author URI: https://connectandconquer.com/
Description: Turn our ideas into income with our seamless three-step process. Subscribe to the platform, choose your products, and learn how to make them with easy-to-follow guides. Once you’re ready, start delivering off of orders instantly through your pre-set store – no setup required. It’s the fastest way to go from beginner to business owner!
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: copycat
Tags: copycatgo, custom theme
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #E65E09;
  --secondary-color: #00A0C1;
  --title-color: #202224;
  --white-color: #FFF;
  --black-color: #000;
  --red-color: #F93C65;
  --dm-sans: "DM Serif Display", serif;
  --montserat: "Montserrat", sans-serif;
  --roboto: "Roboto", sans-serif;
}

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

a {
  transition: 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-family: var(--montserat);
}

h1 {
  font-size: 60px;
  line-height: 70px;
  color: #000000;
  font-family: var(--dm-sans);
}
@media (max-width: 575px) {
  h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

h2 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

p {
  color: #898989;
  font-family: var(--roboto);
}

.container {
  max-width: 1200px;
}

.primary-text {
  color: var(--primary-color);
}

.cp_btn {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 30px;
  border: 1px solid transparent;
  display: inline-block;
  font-family: var(--montserat);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cp_btn.secondary-btn {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #004C4D;
}
.cp_btn.secondary-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
}
.cp_btn.secondary-btn:hover {
  border-color: var(--primary-color);
}
.cp_btn.secondary-btn:hover::before {
  opacity: 1;
}
.cp_btn.primary-btn {
  background: var(--primary-color);
}
.cp_btn.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #004C4D;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.cp_btn.primary-btn:hover {
  border-color: #004C4D;
  color: #ffffff;
}
.cp_btn.primary-btn:hover::before {
  opacity: 1;
}
.cp_btn.outline-btn {
  border-color: #ffffff;
}
.cp_btn.outline-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #ffffff;
}

/***** template styles *****/
.cp_default_template {
  padding-top: 100px;
  padding-bottom: 60px;
}

.cp_fullwidth_template {
  padding-top: 100px;
}

/** header section start **/
.cp_header {
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}
.cp_header .cp_header_logo {
  display: block;
  transition: 0.3s;
}
.cp_header .cp_header_logo img {
  transition: 0.3s;
  width: 250px;
}
.cp_header.sticky-active {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}
.cp_header.sticky-active .cp_header_logo img {
  width: 180px;
}
.cp_header.sticky-active .cp_header_nav ul li a {
  font-size: 16px;
}
.cp_header.sticky-active .cp_header_social a {
  font-size: 24px;
}

.cp_header_nav ul li {
  display: inline-block;
}
.cp_header_nav ul li a {
  display: block;
  padding: 16px 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
}
.cp_header_nav ul li a.active {
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .cp_header_nav ul li a {
    font-size: 16px;
  }
}
.cp_header_nav ul li:hover > a {
  color: var(--primary-color);
}
.cp_header_nav .menu-main-menu-container > ul > li:nth-child(1) {
  margin-right: 32px;
}
.cp_header_nav .menu-main-menu-container > ul > li:last-child {
  margin-left: 24px;
}
@media (max-width: 1199px) {
  .cp_header_nav .menu-main-menu-container > ul > li:nth-child(1) {
    margin-right: 0;
  }
  .cp_header_nav .menu-main-menu-container > ul > li:last-child {
    margin-left: 0;
  }
}

.cp_header_social {
  gap: 20px;
  display: flex;
}
.cp_header_social a {
  font-size: 30px;
  color: #000000;
  text-decoration: none;
}
.cp_header_social a span::before {
  font-family: "dashicons";
}
.cp_header_social a:hover {
  color: var(--primary-color);
}
@media (max-width: 575px) {
  .cp_header_social {
    display: none;
  }
}

.mobile_menu_toggle {
  border: 1px solid rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  background: transparent;
  transition: 0.3s;
}
.mobile_menu_toggle:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: #ffffff;
}

/** header section end **/
/** mobile menu start **/
.cp_mobile_menu {
  background: #ffffff;
  width: 320px;
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: -350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 38px 24px 40px;
  z-index: 200;
  transition: 0.3s;
}
.cp_mobile_menu .menu-main-menu-container > ul {
  padding-top: 60px;
}
.cp_mobile_menu .menu-main-menu-container > ul li {
  display: block;
}
.cp_mobile_menu .menu-main-menu-container > ul li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cp_mobile_menu .menu-main-menu-container > ul li a {
  display: block;
  padding: 8px 0;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
}
.cp_mobile_menu .cp_menu_close {
  float: right;
  font-size: 24px;
  color: #000000;
}
.cp_mobile_menu .cp_menu_close:hover {
  color: var(--primary-color);
}
.cp_mobile_menu .cp_header_social {
  margin-top: 40px;
}
.cp_mobile_menu.active {
  right: 0;
}

/** mobile menu end **/
.cp_footer_section {
  background: rgba(0, 0, 0, 0.95);
  padding: 75px 0 0;
}

.cp_footer_widget .footer_logo {
  display: block;
  max-width: 350px;
}
.cp_footer_widget .footer_logo img {
  max-width: 100%;
}

.cp_footer_nav ul li {
  display: block;
}
.cp_footer_nav ul li + li {
  margin-top: 16px;
}
.cp_footer_nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--montserat);
  transition: 0.3s;
  position: relative;
}
.cp_footer_nav ul li a::before {
  content: "/";
  position: absolute;
  opacity: 0;
  left: 0;
  color: var(--primary-color);
  transition: 0.3s;
}
.cp_footer_nav ul li a:hover {
  padding-left: 12px;
  color: var(--primary-color);
}
.cp_footer_nav ul li a:hover::before {
  opacity: 1;
}

.cp_footer_social h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.cp_footer_social_links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.cp_footer_social_links a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}
.cp_footer_social_links a span::before {
  font-family: "dashicons";
}
.cp_footer_social_links a:hover {
  color: var(--primary-color);
}

.cp_footer_copyright {
  background: #2B2B2B;
}

.copyright_group {
  padding: 10px 12px;
  margin-top: 80px;
}

.copyright_title p, .copyright_text p {
  font-size: 13px;
  color: #ffffff;
}

.copyright_links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.copyright_links a {
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  text-decoration: none;
}
.copyright_links a::after {
  content: "|";
  color: #ffffff;
  position: absolute;
  right: -5px;
  top: 0;
}
.copyright_links a:last-child::after {
  display: none;
}
.copyright_links a:hover {
  color: var(--primary-color);
}

/**** homepage start ****/
.cp_hero_section {
  background: linear-gradient(180deg, #FFF1F4 6.99%, #FFF1F4 31.62%, #2EB7B8 103.6%);
  padding: 400px 0 330px;
  margin-top: -170px;
}
@media (max-width: 767px) {
  .cp_hero_section {
    padding: 350px 0 170px;
  }
}

.cp_hero_box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}
.cp_hero_box .cp_hero_img {
  flex-shrink: 0;
}
.cp_hero_box .cp_hero_img img {
  width: 158px;
}
@media (max-width: 767px) {
  .cp_hero_box {
    display: block;
    text-align: center;
  }
  .cp_hero_box .cp_hero_img {
    margin-bottom: 32px;
  }
}

.cp_hero_content {
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cp_hero_content {
    text-align: center;
  }
}

.cp_hero_content h1 {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cp_hero_content h1 {
    margin-bottom: 24px;
  }
}

.cp_hero_content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 600px;
  font-family: var(--montserat);
  color: #000000;
}
@media (max-width: 767px) {
  .cp_hero_content p {
    max-width: 100%;
    margin-bottom: 24px;
  }
}

.cp_hero_button_group {
  margin-top: 32px;
  gap: 16px;
}
@media (max-width: 767px) {
  .cp_hero_button_group {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/** hero section end **/
/** about section start **/
.cp_about_section {
  padding: 40px 0 140px;
}
.cp_about_section .container-1160 {
  max-width: 1160px;
  margin: 0 auto;
}

.cp_about_content {
  max-width: 580px;
}
.cp_about_content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}
.cp_about_content h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--primary-color);
}
.cp_about_content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}
.cp_about_content .cp_btn {
  margin-top: 48px;
}
@media (max-width: 991px) {
  .cp_about_content {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cp_about_content h2 {
    font-size: 36px;
  }
}

/** about section end **/
/** service section start **/
.cb_service_section {
  background-color: #004C4D;
  padding: 60px 0 90px;
}

.cb_service_section .container {
  max-width: 840px;
}

.cp_section_title h3 {
  font-size: 20px;
  font-weight: 500;
}

.cp_service_card {
  padding: 45px 32px 40px;
  background: #D9D9D9;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.cp_service_card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 24px;
}
.cp_service_card p {
  margin-bottom: 24px;
  font-size: 18px;
}
.cp_service_card .primary-btn {
  min-width: 160px;
  padding: 5px 16px 9px;
  font-size: 18px;
}

/** service section end **/
/** why choose us section start **/
.cp_wcs_section {
  padding: 110px 0;
}

.wcs_list {
  padding-left: 60px;
  margin-top: 50px;
}
.wcs_list li {
  font-size: 18px;
  color: rgba(5, 0, 56, 0.6);
  position: relative;
  padding-left: 30px;
}
.wcs_list li strong {
  color: #007D97;
}
.wcs_list li + li {
  margin-top: 30px;
}
.wcs_list li::before {
  content: "\f00c";
  position: absolute;
  font-family: "FontAwesome";
  color: #050038;
  left: 0;
  top: 2px;
}
@media (max-width: 575px) {
  .wcs_list {
    padding-left: 0;
  }
}

/** call to action start **/
.cp_call_to_action {
  background: #004C4D;
  padding: 110px 0;
}

.cp_cta_content h2 {
  max-width: 350px;
  margin-bottom: 50px;
}
.cp_cta_content p {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cp_cta_content h2 {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .cp_cta_content p {
    max-width: 100%;
  }
}

.cp_cta_btn_group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cp_cta_video_box {
  position: relative;
}

.cp_video_popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
}

/*** blog page ***/
.cp_blog_page_wrapper {
  padding: 150px 0 100px;
}

.cp_single_post {
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px;
  border-radius: 4px;
}
.cp_single_post .cp_feature_image img {
  border-radius: 4px 4px 0 0;
}
.cp_single_post a {
  text-decoration: none;
}
.cp_single_post h3 {
  font-size: 24px;
}
.cp_single_post .cp_post_explore {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

/**** purrfessional page start ***/
.cpf_hero {
  padding: 360px 0;
}
@media (max-width: 1199px) {
  .cpf_hero {
    padding: 360px 0 250px;
  }
}

.cpf_hero_feature > img {
  position: absolute;
  z-index: -1;
  width: 500px;
  top: -60px;
}
@media (max-width: 1199px) {
  .cpf_hero_feature > img {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .cpf_hero_feature {
    padding-bottom: 350px;
  }
  .cpf_hero_feature > img {
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
  }
}

.cpf_about_section {
  padding: 40px 0 100px;
  background-repeat: repeat;
  background-size: 1200px;
}

.cpf_about_content h2 {
  color: #F78C3E;
}
.cpf_about_content p {
  color: #060606;
}

.cpf-service-section {
  background: #004C4D;
  padding: 100px 0;
}

.cpf_service_items {
  margin-left: -36px;
}
.cpf_service_items .cpf_service_item + .cpf_service_item {
  margin-top: 12px;
}

.cpf_service_item {
  background: #D9D9D9;
  padding: 8px 20px 14px;
}
.cpf_service_item h4 {
  padding-left: 20px;
  position: relative;
}
.cpf_service_item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}
.cpf_service_item p {
  padding-left: 20px;
  font-size: 17px;
  color: #1D2B35;
}

.cpf_htw_section {
  padding: 100px 0;
  background-position: 0 -100px;
}

.cpf_htw_card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  background: #ffffff;
}
.cpf_htw_card h4 {
  color: #007D97;
}
.cpf_htw_card p {
  color: #000000;
}
.cpf_htw_card:hover {
  transform: translateY(-10px);
}

/***** video section start *******/
.cpf_cta_content h2 {
  max-width: 100%;
}

/******* testimonial section start ******/
.cpf_testimonial_section {
  padding: 50px 0 100px;
}

.cpf_section_title .outline-btn {
  border-color: #2EB7B8;
  color: #5B838F;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.cpf_ts_slider .slick-list {
  margin: 0 -12px;
}
.cpf_ts_slider .slick-list .slick-slide {
  margin: 0 12px;
}

.cpf_testimonial_card .brand_logo {
  padding: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 32px;
}
.cpf_testimonial_card .cpf_ts_meta > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/******* call to action start ******/
.cpf_call_to_action {
  background: #E65E09;
  padding: 50px 0 60px;
}

.cpf_call_to_action_content {
  background: #25ADB0;
  padding: 40px 32px;
  margin-left: -80px;
}

/*** Products page ***/
.cp_products_section {
  padding: 50px 0 60px;
}
.cp_products_section .products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 28px;
}
@media screen and (max-width: 1200px) {
  .cp_products_section .products {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cp_products_section .products {
    grid-template-columns: 1fr;
  }
}
.cp_products_section .products .product {
  background: var(--white-color);
  box-shadow: 6px 6px 54px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cp_products_section .products .product .product-images {
  max-width: 340px;
}
@media screen and (max-width: 1300px) {
  .cp_products_section .products .product .product-images {
    max-width: 280px;
  }
}
.cp_products_section .products .product .product-images .product-img {
  height: 320px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .cp_products_section .products .product .product-images .product-img {
    height: 280px;
  }
}
.cp_products_section .products .product .product-images .product-img a {
  display: flex;
  justify-content: center;
}
.cp_products_section .products .product .product-images .product-img a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cp_products_section .products .product .product-images .slick-prev,
.cp_products_section .products .product .product-images .slick-next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  background: #E2EAF8;
  mix-blend-mode: normal;
  opacity: 0.5;
  border: none;
  border-radius: 100%;
  padding: 10px 16px;
}
.cp_products_section .products .product .product-images .slick-prev:hover,
.cp_products_section .products .product .product-images .slick-next:hover {
  background: #4880FF;
  opacity: 1;
  color: var(--white-color);
}
.cp_products_section .products .product .product-images .slick-prev {
  left: -5px; /* adjust as needed */
}
@media screen and (max-width: 1300px) {
  .cp_products_section .products .product .product-images .slick-prev {
    left: -30px;
  }
}
.cp_products_section .products .product .product-images .slick-next {
  right: -5px; /* adjust as needed */
}
@media screen and (max-width: 1300px) {
  .cp_products_section .products .product .product-images .slick-next {
    right: -30px;
  }
}
.cp_products_section .products .product .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.cp_products_section .products .product .content .top {
  position: relative;
}
.cp_products_section .products .product .content .top .product-title a {
  font-family: var(--montserat);
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--title-color);
  text-decoration: none;
}
.cp_products_section .products .product .content .top .product-title a:hover {
  color: var(--primary-color);
}
.cp_products_section .products .product .content .top .price .woocommerce-Price-amount {
  font-family: var(--montserat);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #4880FF;
}
.cp_products_section .products .product .content .top .rating {
  font-family: var(--montserat);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.17px;
  display: flex;
}
.cp_products_section .products .product .content .top .rating .count {
  opacity: 0.4;
}
.cp_products_section .products .product .content .top .yith-add-to-wishlist-button-block {
  position: absolute;
  right: 0;
  top: 0;
}
.cp_products_section .products .product .content .top .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  padding: 7px 10px;
  border-radius: 100%;
  background-color: #F9F9F9;
}
.cp_products_section .products .product .content .top .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button-icon {
  color: #F93C65;
  width: 24px;
}
.cp_products_section .products .product .content .top .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.cp_products_section .products .product .content .bottom {
  margin-top: 10px;
}
.cp_products_section .products .product .content .bottom .add_to_cart_button {
  font-family: var(--montserat);
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0px;
  color: var(--title-color);
  background-color: #E2EAF8;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
}
.cp_products_section .products .product .content .bottom .add_to_cart_button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.cp_products_section .products .product .content .bottom .added_to_cart {
  margin-left: 5px;
}

/*** Product search section ***/
.product_search {
  padding-top: 50px;
}
.product_search .container-full {
  max-width: 1920px;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .product_search {
    padding-top: 0;
  }
}
.product_search .left img {
  max-width: 100%;
}
.product_search .right {
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .product_search .right {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.product_search .right .content {
  max-width: 452px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.product_search .right .content form#product-category-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.product_search .right .content form#product-category-form .categories {
  width: 100%;
  padding: 10px;
  background-color: #D9D9D9;
  border: none;
  outline: none;
  appearance: none; /* For most modern browsers */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  padding: 10px 40px 10px 10px; /* space for icon */
  background: white url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7"><path fill="black" d="M0 0l6 6 6-6z"/></svg>') no-repeat right 10px center;
  background-size: 12px 7px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.product_search .right .content form#product-category-form .cp_btn {
  font-size: 18px;
  margin-top: 8px;
}

/*** CTA section ***/
@media screen and (max-width: 1024px) {
  .marketplace-cta {
    padding: 60px 0;
  }
}
.marketplace-cta .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.marketplace-cta .right img {
  max-width: 100%;
}

/*** Single Product page section ***/
.single-product-page {
  padding: 60px 0;
  margin-top: 60px;
}
.single-product-page .product_title {
  font-size: 40px;
  font-family: var(--montserat);
}

.woocommerce-Price-amount {
  color: var(--primary-color);
}

.single_add_to_cart_button {
  border-radius: 25px;
  padding: 10px 25px;
}

.woocommerce .star-rating {
  line-height: 12px;
}
.woocommerce .star-rating span::before {
  color: #FF9500;
}

.archive-hero {
  padding: 40px 0;
  background: #f5f5f5; /* Adjust to match your design */
  margin-top: 140px;
}
.archive-hero .woocommerce-breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}
.archive-hero .woocommerce-breadcrumb a {
  color: #333;
  text-decoration: none;
}
.archive-hero .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.woocommerce-cart .cp_default_template {
  margin-top: 90px;
}
.woocommerce-cart .cp_default_template .wc-block-cart-items__header {
  font-size: 18px;
  font-family: var(--montserat);
}
.woocommerce-cart .cp_default_template .wc-block-cart .wc-block-cart__totals-title {
  font-size: 18px;
  font-family: var(--montserat);
}
.woocommerce-cart .cp_default_template .wc-block-components-product-name {
  text-decoration: none;
  color: var(--black-color);
  font-weight: 500;
}
.woocommerce-cart .cp_default_template .wc-block-cart__submit-button {
  background: #f1f1f1;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: 0.3s ease;
  border-radius: 4px;
}
.woocommerce-cart .cp_default_template .wc-block-cart__submit-button:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.woocommerce-checkout .cp_default_template {
  margin-top: 60px;
}
.woocommerce-checkout .cp_default_template .wc-block-components-checkout-place-order-button {
  border: none;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s ease;
}
.woocommerce-checkout .cp_default_template .wc-block-components-checkout-place-order-button:hover {
  background-color: var(--red-color);
}

/*# sourceMappingURL=style.css.map */
