/*
Theme Name: Essentials Child
Theme URI: https://essentials.pixfort.com/
Author: PixFort
Template: essentials
Author URI: http://themeforest.net/user/pixfort
Description: Essentials child theme
Version: 1.0.2
License: Envato Marketplaces Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: essentials-child
Tags: header-builder, footer-builder, divider-builder, popup-builder, premium-design, translation-ready

*/

/* Contact Form 7 Stylizacja */
.wpcf7 {
  max-width: 600px;
  margin: 30px 0;
}

.contact-form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form-row label {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form-row input[type="text"],
.contact-form-row input[type="email"],
.contact-form-row textarea {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form-row input[type="text"]:focus,
.contact-form-row input[type="email"]:focus,
.contact-form-row textarea:focus {
  border-color: #ff006e;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.2);
  outline: none;
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-row p {
  margin: 0;
}

/* Checkbox (GDPR) */
.wpcf7-acceptance {
  margin: 20px 0;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  margin: 0;
}

.wpcf7-acceptance input {
  margin-right: 10px;
}

/* Submit Button */
.contact-form-submit {
  margin-top: 25px;
}

.contact-form-submit input[type="submit"] {
  background: linear-gradient(135deg, #ff006e, #8338ec);
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.contact-form-submit input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.contact-form-submit input[type="submit"]:active {
  transform: translateY(0);
}

/* Wiadomość sukcesu */
.wpcf7-mail-sent-ok {
  color: #27ae60;
  background: #d5f4e6;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Błędy */
.wpcf7-mail-sent-ng {
  color: #e74c3c;
  background: #fadbd8;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-invalid,
.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-invalid,
.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.wpcf7-invalid {
  border-color: #e74c3c !important;
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}





/* ===== MINIMAL WOOCOMMERCE CSS ===== */
/* Pink: #ff006e | Purple: #8338ec */

/* Product Price */
.product .price,
.woocommerce .product .price,
.woocommerce .single-product .price {
  color: #ff006e !important;
  font-weight: 700 !important;
}

/* Product Title - GRADIENT (jak na homepage) */
.product_title.entry-title.h4.font-weight-bold.text-heading-default.pix-my-10,
.product_title,
.entry-title,
h4.product_title {
  background: linear-gradient(90deg, #ff006e 0%, #8338ec 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}





/* Checkout – podpowiedzi w polach na czarno */
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #000000 !important;
    opacity: 1 !important;
	
	
	
	
	
/* ===== ABOUT ME SECTION ===== */

.about-me-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
  min-height: 700px;
  padding: 80px 5%;
  font-family: 'Arial', sans-serif;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.about-me-image-section {
  flex: 0 1 auto;
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.about-me-image {
  width: 500px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3),
              0 0 40px rgba(131, 56, 236, 0.2);
  transition: all 0.4s ease;
}

.about-me-image:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 30px 80px rgba(255, 0, 110, 0.5),
              0 0 50px rgba(131, 56, 236, 0.4);
}

.about-me-content {
  flex: 0 1 auto;
  max-width: 750px;
  color: #fff;
  opacity: 0;
  transform: translateX(60px);
  animation: fadeInRight 1s ease-out 0.2s forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-me-title {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 40px 0;
  background: linear-gradient(135deg, #ff006e, #8338ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.3s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-me-text {
  font-size: 18px;
  line-height: 1.9;
  color: #fff !important;
  margin: 0;
  text-align: justify;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.about-me-text p {
  margin: 0 0 25px 0;
  transition: all 0.3s ease;
  color: #fff !important;
}

.about-me-text p:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.2);
}

.about-me-highlight {
  color: #ff006e !important;
  font-weight: 600;
}

/* STATYSTYKI */
.about-me-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.stat-item {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
  padding: 35px 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 0, 110, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.about-me-stats .stat-item:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.3s forwards;
}

.about-me-stats .stat-item:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.4s forwards;
}

.about-me-stats .stat-item:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.5s forwards;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
  border-color: rgba(255, 0, 110, 0.5);
}

.stat-icons-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
  height: 50px;
  align-items: center;
}

.stat-icon {
  font-size: 45px;
  transition: all 0.3s ease;
  color: #ff006e;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff006e !important;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ===== RESPONSYWNOŚĆ ===== */

@media (max-width: 1400px) {
  .about-me-container {
    gap: 80px;
    padding: 60px 5%;
  }

  .about-me-image {
    width: 450px;
    height: 450px;
  }

  .about-me-title {
    font-size: 48px;
  }

  .about-me-content {
    max-width: 650px;
  }

  .about-me-text {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .about-me-container {
    gap: 50px;
    padding: 60px 5%;
    min-height: auto;
  }

  .about-me-image {
    width: 400px;
    height: 400px;
  }

  .about-me-title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .about-me-content {
    max-width: 550px;
  }

  .about-me-text {
    font-size: 16px;
  }

  .about-me-stats {
    gap: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 5%;
    min-height: auto;
  }

  .about-me-image-section {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-me-image {
    width: 350px;
    height: 350px;
  }

  .about-me-title {
    font-size: 38px;
    text-align: center;
  }

  .about-me-content {
    max-width: 100%;
  }

  .about-me-text {
    text-align: center;
    font-size: 16px;
  }

  .about-me-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-me-container {
    padding: 30px 5%;
  }

  .about-me-image {
    width: 280px;
    height: 280px;
  }

  .about-me-title {
    font-size: 32px;
  }

  .about-me-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-icon {
    font-size: 36px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 12px;
  }
}

	