/*
 Theme Name:   Manufactura Child
 Theme URI:    http://manufactura.bold-themes.com
 Description:  Manufactura Child Theme
 Author:       BoldThemes
 Author URI:   http://bold-themes.com
 Template:     manufactura
 Version:      1.0.0
 Tags:         one-column, right-sidebar, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready
 Text Domain:  manufactura-child
*/


/* Theme customization starts here
-------------------------------------------------------------- */
.fancy-category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.fancy-category-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48%; /* Two per row */
  padding: 30px 40px;
  border-radius: 25px;
  color: white;
  text-align: left;
  position: relative;
  overflow: visible;
  min-height: 200px;
  margin-bottom: 40px;
}

.fancy-category-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.fancy-btn {
  background: white;
  color: black;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.fancy-btn:hover {
  background: #f4f4f4;
}

.fancy-category-image {
  position: absolute;
  right: -20px; /* push it slightly outside */
  top: -60px;
}

.fancy-category-image img {
  max-width: 170px !important;  /* smaller image */
  height: auto;
}
@media (max-width: 768px) {
  .fancy-category-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fancy-category-image {
    position: static;
    margin-top: 20px;
  }
}

.fancy-products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  padding: 50px 20px;
  border-radius: 20px;
}

.fancy-product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 30%; /* ✅ Now 3 per row */
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.fancy-product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
  max-width: 330px;
  max-height: 330px;
  object-fit: cover;
}

.fancy-product-info {
  padding: 15px;
  text-align: center;
}

.fancy-product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.fancy-product-info .price {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}

.fancy-btn {
  background: #D5A2A0 !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
  border: none;
}

.fancy-btn:hover {
  background: #444;
}


@media (max-width: 768px) {
  .fancy-product-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .fancy-product-card {
    width: 45%; /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .fancy-product-card {
    width: 45%;
  }
   .fancy-product-card a.fancy-btn {
    font-size: 11px;
	padding: 6px 10px;
}
	.fancy-product-image img{
		max-height: 190px;
	}
}

.fancy-pagination {
  text-align: center;
  margin-top: 30px;
}

.fancy-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
}

.fancy-pagination li {
  margin: 0 5px;
}

.fancy-pagination a,
.fancy-pagination span {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fancy-pagination a:hover,
.fancy-pagination .current {
  background: #222;
  color: #fff;
  border-color: #222;
}
.fancy-footer {
  background: #fdfdfd;
  border-top: 1px solid #eee;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.footer-social img:hover {
  filter: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }
}
.how-to-order {
  background: #fdfdf9;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.how-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.how-icon {
  background: #ffb347;
  border-radius: 50%;
  padding: 10px 14px;
  font-size: 20px;
  margin-bottom: 10px;
}

.how-title h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}

.how-black {
  color: #222;
}

.how-color {
  color: #ff4d6d;
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.how-steps .step {
  max-width: 260px;
}

.how-steps img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.how-steps p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.btSiteFooter section.btSiteFooterWidgets.gutter .port{
	max-width: 100% !important;
	padding: 0 !important;
}
section.btSiteFooterWidgets.gutter{
	padding: 0 !important;
}

.btLightSkin .btSiteFooter .port:before, .bt_bb_color_scheme_2 .btSiteFooter .port:before, .bt_bb_color_scheme_4 .btSiteFooter .port:before, .bt_bb_color_scheme_5 .btSiteFooter .port:before{
	content:none !important;
}