.elementor-2379 .elementor-element.elementor-element-5c2c940 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-start;align-items:flex-start;}.elementor-2379 .elementor-element.elementor-element-5c2c940{margin-top:0px;margin-bottom:-20px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2379 .elementor-element.elementor-element-34e99ee img{width:100%;height:350px;object-fit:cover;object-position:center center;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-2379 .elementor-element.elementor-element-d38117c{margin:-170px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;--e-icon-list-icon-size:15px;}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(10px/2);}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(10px/2);}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(10px/2);}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-10px/2);}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-10px/2);}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-icon i{color:#FFF8E1;transition:color 0.3s;}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-icon svg{fill:#FFF8E1;transition:fill 0.3s;}.elementor-2379 .elementor-element.elementor-element-d38117c .elementor-icon-list-text{color:#FFF8E1;transition:color 0.3s;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2379 .elementor-element.elementor-element-67f0bd1{margin:-230px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:center;}.elementor-2379 .elementor-element.elementor-element-67f0bd1 .elementor-heading-title{font-size:45px;font-weight:700;color:#FFF8E1;}.elementor-2379 .elementor-element.elementor-element-5251d91 > .elementor-container{max-width:1600px;}.elementor-2379 .elementor-element.elementor-element-4c2e6d6 > .elementor-container{max-width:1600px;}/* Start custom CSS for html, class: .elementor-element-b496e2a */:root {
  --brown: #D22A2A;       /* Red */
  --green: #11652a;       /* Dark Green */
  --cream: #FFF8E1;       /* Cream Background */
  --light-cream: #FFF3C6; /* Light Cream */
}

/* Section */
.products-section {
  padding: 100px 20px;
  background: var(--cream);
  font-family: 'Arial', sans-serif; /* font same */
}

/* Section Header */
.products-section .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px auto;
}

.products-section .section-header h2 {
  font-size: 50px;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.products-section .section-header p {
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1.8;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
} 

/* Product Card */
.product-card {
      background-color: #ffefce;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17,101,42,0.15); /* green tone */
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(210,42,42,0.25); /* red tone */
  background: linear-gradient(135deg, var(--light-cream), #FDE9A9);
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.product-image .back-img {
  opacity: 0;
}

.product-image:hover .back-img {
  opacity: 1;
}

.product-image:hover .front-img {
  opacity: 0;
}

/* Card Text */
.product-card h3 {
  font-size: 20px;
  color: var(--brown);
  margin: 20px;
}

.product-card p {
  font-size: 14px;
  color: var(--green);
  line-height: 1.7;
  margin: 0 20px 20px 20px;
}

/* Responsive adjustments */
@media(max-width: 1024px) {
  .products-section {
    padding: 80px 20px;
  }

  .products-section .section-header h2 {
    font-size: 2.5rem;
  }

  .product-card h3 {
    font-size: 1.7rem;
  }

  .product-card p {
    font-size: 1.15rem;
  }

  .product-image {
    height: 220px;
  }
}

@media(max-width: 768px) {
  .products-section {
    padding: 60px 15px;
  }

  .products-section .section-header h2 {
    font-size: 2.2rem;
  }

  .product-card h3 {
    font-size: 1.5rem;
  }

  .product-card p {
    font-size: 1.05rem;
  }

  .product-image {
    height: 200px;
  }
}

@media(max-width: 480px) {
  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.3rem;
  }

  .product-card p {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ec2213 */.pre-footer {
  background: #860903; /* Dark red background */
  padding: 60px 50px;
  text-align: center;
  color: #FFF8E1; /* Light cream text */
}

.pre-footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pre-footer-heading {
  font-size: 3.8rem;   /* Bigger heading */
  color: #FFD700;      /* Golden yellow heading */
  margin-bottom: 25px;
  font-weight: 900;    /* Extra bold */
  letter-spacing: 1px; /* More impact */
}

.pre-footer-text {
  font-size: 1.8rem;   /* Bigger paragraph text */
  line-height: 2;
  font-weight: 700;    /* Bold */
  max-width: 850px;
  margin: 0 auto 40px auto;
}

.pre-footer-btn {
  display: inline-block;
  background-color: #FFD700; /* Golden yellow button */
  color: #860903;           /* Dark red text for contrast */
  font-size: 1.6rem;        /* Bigger button text */
  font-weight: 800;         /* Bold button */
  padding: 15px 40px;       /* Bigger button size */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pre-footer-btn:hover {
  background-color: #FFC700;
  color: #5a0000;
}

@media (max-width: 768px) {
  .pre-footer-heading {
    font-size: 2.5rem;
  }
  .pre-footer-text {
    font-size: 1.3rem;
  }
  .pre-footer-btn {
    font-size: 1.2rem;
    padding: 12px 30px;
  }
}/* End custom CSS */