.elementor-19 .elementor-element.elementor-element-172d4da{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-16a30ab{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-16a30ab:not(.elementor-motion-effects-element-type-background), .elementor-19 .elementor-element.elementor-element-16a30ab > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#17B460;}.elementor-19 .elementor-element.elementor-element-68242d7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-68242d7:not(.elementor-motion-effects-element-type-background), .elementor-19 .elementor-element.elementor-element-68242d7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F9FA;}.elementor-19 .elementor-element.elementor-element-64b2c5e{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-f90c6d2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-f2e449e{--display:flex;}.elementor-19 .elementor-element.elementor-element-7b650b4{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e95affe *//* Hero Section Styles */

.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Left Side - Text Content */
.hero-text {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #17B460;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
  color: #17B460;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #17B460, #0f8a4a);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  max-width: 90%;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button-hero {
  display: inline-block;
  background: #FF8C00;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  background: #E67E00;
}

/* Right Side - Image Carousel */
.hero-images {
  position: relative;
  height: 100%;
  width: 100%;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: scale(1.1);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide:not(.active) {
  transform: scale(1.05);
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 4s ease-in-out;
  min-height: 100%;
  max-height: 100%;
}

.carousel-slide.active .carousel-image {
  transform: scale(1.05);
}

.image-overlay {
  display: none;
}

/* Carousel Indicators */
.carousel-indicators {
  display: none;
}

/* Background Decorative Elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.05));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text {
    padding: 40px 30px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    padding: 40px 30px;
    order: 2;
    height: auto;
    min-height: 50vh;
  }
  
  .hero-images {
    order: 1;
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  .hero-description {
    font-size: 14px;
    text-align: center;
  }
  
  .bg-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text {
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .hero-description {
    font-size: 13px;
  }
  
  .hero-images {
    height: 40vh;
    min-height: 250px;
  }
  
  .cta-button-hero {
    padding: 12px 25px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-92a5ace *//* Features Section Styles */

.features-section {
  background-color: #17B460;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  color: white;
}

.feature-content {
  flex: 1;
  color: white;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: white;
  margin: 0;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-section {
    padding: 50px 0;
  }
  
  .features-grid {
    gap: 30px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-item {
    padding: 20px;
    text-align: left;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon svg {
    width: 44px;
    height: 44px;
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .features-grid {
    gap: 25px;
  }
  
  .feature-item {
    padding: 15px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .feature-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .feature-description {
    font-size: 13px;
    line-height: 1.5;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fdd2a06 *//* Products Section Styles */

.products-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.products-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Text and Image */
.products-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.products-header {
  margin-bottom: 20px;
}

.products-subtitle {
  font-size: 16px;
  color: #17B460;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.products-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}

.cta-button-products {
  display: inline-block;
  background: #FF8C00;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-products:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  background: #E67E00;
}

.products-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vegetables-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.products-image:hover .vegetables-img {
  transform: scale(1.05);
}

/* Right Side - Description and Stats */
.products-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 40px;
  padding-top: 20px;
}

.products-description {
  margin-bottom: 20px;
}

.products-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  text-align: justify;
}

/* Statistics Cards */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: #17B460;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(23, 180, 96, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(23, 180, 96, 0.3);
}

.stat-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.stat-content {
  flex: 1;
  color: white;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-plus {
  font-size: 24px;
  color: #FFD700;
  font-weight: 600;
}

.stat-label {
  font-size: 14px;
  color: white;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-section {
    padding: 60px 0;
  }
  
  .products-content {
    gap: 40px;
  }
  
  .products-title {
    font-size: 36px;
  }
  
  .products-description p {
    font-size: 15px;
  }
  
  .vegetables-img {
    height: 280px;
  }
  
  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 50px 0;
  }
  
  .products-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-left {
    order: 1;
    gap: 30px;
  }
  
  .products-right {
    order: 2;
    gap: 30px;
    padding-top: 0;
  }
  
  .products-title {
    font-size: 32px;
    text-align: center;
  }
  
  .products-subtitle {
    text-align: center;
  }
  
  .products-header {
    text-align: center;
  }
  
  .products-description p {
    text-align: left;
  }
  
  .vegetables-img {
    height: 250px;
  }
  
  .stats-container {
    flex-direction: row;
    gap: 15px;
  }
  
  .stat-card {
    flex: 1;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .products-left {
    gap: 25px;
  }
  
  .products-right {
    gap: 25px;
  }
  
  .products-title {
    font-size: 28px;
  }
  
  .products-subtitle {
    font-size: 14px;
  }
  
  .products-description p {
    font-size: 14px;
  }
  
  .vegetables-img {
    height: 200px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-card {
    flex-direction: row;
    text-align: left;
    padding: 18px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
  }
  
  .stat-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-plus {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .cta-button-products {
    padding: 12px 25px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f9de8ea *//* Farm Section Styles */

.farm-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.farm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side - Images */
.farm-images {
  position: relative;
  height: 400px;
}

.farmer-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.farmer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.farmer-image:hover .farmer-img {
  transform: scale(1.05);
}

.vegetables-overlay {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  z-index: 3;
}

.vegetables-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vegetables-overlay:hover .vegetables-img {
  transform: scale(1.1);
}

/* Right Side - Content */
.farm-text {
  padding-left: 20px;
}

.farm-header {
  margin-bottom: 30px;
}

.farm-subtitle {
  font-size: 16px;
  color: #17B460;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.farm-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}

.farm-description {
  margin-bottom: 35px;
}

.farm-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  text-align: justify;
}

/* Buttons */
.farm-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-button-contact {
  display: inline-block;
  background: #FF8C00;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  background: #E67E00;
}

.cta-button-video {
  display: inline-block;
  background: transparent;
  color: #17B460;
  padding: 15px 35px;
  border: 2px solid #17B460;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-video:hover {
  background: #17B460;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(23, 180, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .farm-section {
    padding: 60px 0;
  }
  
  .farm-content {
    gap: 40px;
  }
  
  .farm-title {
    font-size: 36px;
  }
  
  .farm-description p {
    font-size: 15px;
  }
  
  .farm-images {
    height: 350px;
  }
  
  .vegetables-overlay {
    width: 160px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .farm-section {
    padding: 50px 0;
  }
  
  .farm-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .farm-images {
    order: 1;
    height: 300px;
    margin: 0 auto;
    max-width: 400px;
  }
  
  .farm-text {
    order: 2;
    padding-left: 0;
    text-align: center;
  }
  
  .farm-title {
    font-size: 32px;
  }
  
  .farm-description p {
    text-align: left;
  }
  
  .farm-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .vegetables-overlay {
    top: -15px;
    left: -20px;
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 580px) {
  .farm-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-button-contact,
  .cta-button-video {
    width: 200px;
    text-align: center;
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .farm-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .farm-images {
    height: 250px;
  }
  
  .farm-title {
    font-size: 28px;
  }
  
  .farm-subtitle {
    font-size: 14px;
  }
  
  .farm-description p {
    font-size: 14px;
  }
  
  .vegetables-overlay {
    top: -10px;
    left: -15px;
    width: 120px;
    height: 90px;
    border: 3px solid #ffffff;
  }
  
  .cta-button-contact,
  .cta-button-video {
    width: 180px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .farm-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .farm-images {
    height: 220px;
  }
  
  .vegetables-overlay {
    width: 100px;
    height: 80px;
  }
  
  .cta-button-contact,
  .cta-button-video {
    width: 160px;
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-362d5de *//* Remove food images styles since we're using background image now *//* Commitment Section Styles */

.commitment-section {
  background: #17B460 url('https://spoldzielniamegalon.eu/wp-content/uploads/2025/06/Our_products.webp') center/cover;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.commitment-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Header */
.commitment-header {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.commitment-title {
  font-size: 36px;
  font-weight: 700;
  color: #FF8C00;
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.commitment-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Numbered List */
.commitment-list {
  margin-bottom: 30px;
  text-align: left;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  animation: fadeInLeft 1s ease-out;
}

.commitment-item:nth-child(1) { animation-delay: 0.2s; }
.commitment-item:nth-child(2) { animation-delay: 0.4s; }
.commitment-item:nth-child(3) { animation-delay: 0.6s; }
.commitment-item:nth-child(4) { animation-delay: 0.8s; }

.commitment-item:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.item-number {
  flex-shrink: 0;
  width: 25px;
  height: auto;
  background: transparent;
  color: #FFFFFF;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
  padding-top: 2px;
}

.item-content {
  flex: 1;
  padding-top: 0;
}

.item-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  text-align: left;
}

/* CTA Button */
.commitment-cta {
  text-align: center;
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-button-shop {
  display: inline-block;
  background: #FF8C00;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
  background: #E67E00;
}

.cta-button-shop:active {
  transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .commitment-section {
    padding: 40px 0;
  }
  
  .commitment-title {
    font-size: 32px;
  }
  
  .commitment-subtitle {
    font-size: 18px;
  }
  
  .item-content p {
    font-size: 14px;
  }
  
  .cta-button-shop {
    font-size: 15px;
    padding: 14px 30px;
  }
}

@media (max-width: 768px) {
  .commitment-section {
    padding: 35px 0;
  }
  
  .commitment-content {
    max-width: 90%;
  }
  
  .commitment-header {
    margin-bottom: 25px;
  }
  
  .commitment-title {
    font-size: 28px;
  }
  
  .commitment-subtitle {
    font-size: 17px;
  }
  
  .commitment-list {
    margin-bottom: 25px;
  }
  
  .commitment-item {
    padding: 15px;
    margin-bottom: 15px;
    gap: 12px;
  }
  
  .item-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .item-content p {
    font-size: 14px;
  }
  
  .cta-button-shop {
    font-size: 14px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .commitment-section {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .commitment-content {
    max-width: 100%;
  }
  
  .commitment-title {
    font-size: 24px;
  }
  
  .commitment-subtitle {
    font-size: 16px;
  }
  
  .commitment-item {
    padding: 12px;
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .item-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .item-content {
    padding-top: 1px;
  }
  
  .item-content p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .cta-button-shop {
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 25px;
  }
}

@media (max-width: 360px) {
  .commitment-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .commitment-subtitle {
    font-size: 16px;
  }
  
  .commitment-item {
    padding: 12px;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .item-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .item-content p {
    font-size: 13px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b1cb60 *//* Product Categories Section Styles */

.categories-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

/* Header */
.categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.categories-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.categories-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  margin: 0;
  font-weight: 400;
}

/* Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Category Item */
.category-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.category-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-item:hover .category-overlay {
  opacity: 1;
}

/* Content */
.category-content {
  padding: 25px 20px;
  text-align: center;
  position: relative;
}

.category-name {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* Learn More Link */
.learn-more {
  color: #FF8C00;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.learn-more::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.category-item:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.learn-more:hover {
  color: #E67E00;
}

.learn-more:hover::after {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .categories-section {
    padding: 60px 0;
  }
  
  .categories-header {
    margin-bottom: 50px;
  }
  
  .categories-title {
    font-size: 36px;
  }
  
  .categories-grid {
    gap: 25px;
  }
  
  .category-image {
    height: 180px;
  }
  
  .category-content {
    padding: 20px 15px;
  }
  
  .category-name {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .categories-section {
    padding: 50px 0;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .categories-title {
    font-size: 32px;
  }
  
  .categories-subtitle {
    font-size: 16px;
  }
  
  .category-image {
    height: 160px;
  }
  
  .category-content {
    padding: 18px 15px;
  }
  
  .category-name {
    font-size: 17px;
  }
  
  .learn-more {
    font-size: 13px;
  }
  
  /* Show learn more on mobile without hover */
  .learn-more {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .categories-header {
    margin-bottom: 40px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .categories-title {
    font-size: 28px;
  }
  
  .categories-subtitle {
    font-size: 15px;
  }
  
  .category-image {
    height: 180px;
  }
  
  .category-content {
    padding: 20px 15px;
  }
  
  .category-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .learn-more {
    font-size: 14px;
  }
  
  .category-item:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 360px) {
  .categories-title {
    font-size: 24px;
  }
  
  .category-image {
    height: 160px;
  }
  
  .category-content {
    padding: 15px 12px;
  }
  
  .category-name {
    font-size: 16px;
  }
  
  .learn-more {
    font-size: 12px;
  }
}

/* Animation for staggered entrance */
.category-item {
  animation: fadeInUp 0.6s ease-out;
}

.category-item:nth-child(1) { animation-delay: 0.1s; }
.category-item:nth-child(2) { animation-delay: 0.2s; }
.category-item:nth-child(3) { animation-delay: 0.3s; }
.category-item:nth-child(4) { animation-delay: 0.4s; }
.category-item:nth-child(5) { animation-delay: 0.5s; }
.category-item:nth-child(6) { animation-delay: 0.6s; }
.category-item:nth-child(7) { animation-delay: 0.7s; }
.category-item:nth-child(8) { animation-delay: 0.8s; }
.category-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Touch devices - show learn more permanently */
@media (hover: none) and (pointer: coarse) {
  .learn-more {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e28c2f4 *//* How We Work Section Styles */

.how-we-work-section {
  background-color: #ffffff;
  padding: 50px 0;
  position: relative;
}

/* Header */
.work-header {
  text-align: center;
  margin-bottom: 40px;
}

.work-subtitle {
  font-size: 16px;
  color: #17B460;
  font-weight: 500;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.work-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Step Item */
.step-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Step Image */
.step-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step-item:hover .step-image img {
  transform: scale(1.1);
}

/* Step Overlay */
.step-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.step-item:hover .step-overlay {
  background: rgba(0, 0, 0, 0.3);
}

/* Step Content */
.step-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.step-item:hover .step-title {
  transform: scale(1.05);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .how-we-work-section {
    padding: 40px 0;
  }
  
  .work-header {
    margin-bottom: 35px;
  }
  
  .work-title {
    font-size: 32px;
  }
  
  .step-image {
    height: 180px;
  }
  
  .step-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .how-we-work-section {
    padding: 35px 0;
  }
  
  .work-header {
    margin-bottom: 30px;
  }
  
  .work-title {
    font-size: 28px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .step-image {
    height: 200px;
  }
  
  .step-title {
    font-size: 24px;
  }
  
  .step-item:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .how-we-work-section {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .work-header {
    margin-bottom: 25px;
  }
  
  .work-subtitle {
    font-size: 14px;
  }
  
  .work-title {
    font-size: 24px;
  }
  
  .steps-grid {
    gap: 15px;
  }
  
  .step-image {
    height: 180px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-content {
    padding: 0 15px;
  }
}

@media (max-width: 360px) {
  .work-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .step-image {
    height: 160px;
  }
  
  .step-title {
    font-size: 18px;
  }
}

/* Animation for entrance */
.step-item {
  animation: fadeInUp 0.6s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(2) { animation-delay: 0.4s; }
.step-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */