🚚

Free Delivery

Free Tracked Delivery on All Orders

Satisfaction Guarantee

Our 30-Day Money-Back Guarantee

👍

Customer-Approved

Trusted by Shoppers - 5 Star rated product and service!

📞

🚚

Free Delivery

Free Tracked Delivery on All Orders

Satisfaction Guarantee

Our 30-Day Money-Back Guarantee

👍

Customer-Approved

Trusted by Shoppers - 5 Star rated product and service!

📞

🚚

Free Delivery

Free Tracked Delivery on All Orders

Satisfaction Guarantee

Our 30-Day Money-Back Guarantee

👍

Customer-Approved

Trusted by Shoppers - 5 Star rated product and service!

📞

Frame 222.png

<div class="features-container">
  <div class="feature">
    <span class="feature-icon">🚚</span>
    <div class="feature-text">
      <h3 class="feature-title">Free Delivery</h3>
      <p class="feature-description">Free Tracked Delivery on All Orders</p>
    </div>
  </div>
  <div class="feature">
    <span class="feature-icon">✅</span>
    <div class="feature-text">
      <h3 class="feature-title">Satisfaction Guarantee</h3>
      <p class="feature-description">Our 30-Day Money-Back Guarantee</p>
    </div>
  </div>
  <div class="divider horizontal-divider"></div>
  <div class="divider vertical-divider"></div>
  <div class="feature">
    <span class="feature-icon">👍</span>
    <div class="feature-text">
      <h3 class="feature-title">Customer-Approved</h3>
      <p class="feature-description">Trusted by Shoppers - 5 Star rated product and service!</p>
    </div>
  </div>
  <div class="feature">
    <span class="feature-icon">📞</span>
    <div class="feature-text">
      <h3 class="feature-title">Responsive Customer Support</h3>
      <p class="feature-description">Assistance at Your Fingertips: We're Here for You</p>
    </div>
  </div>
</div>
 
<style>
.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  max-width: 600px;
  margin: auto;
}
 
.feature {
  display: flex;
  align-items: center;
}
 
.feature-icon {
  font-size: 24px; /* Icon size */
  margin-right: 12px; /* Space between icon and text */
}
 
.feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
 
.feature-title {
  font-size: 12px; /* Title size */
  margin: 0;
}
 
.feature-description {
  font-size: 12px; /* Description size */
  margin: 0;
}
 
.divider {
  background-color: #ccc; /* Line color */
  position: absolute;
}
 
.horizontal-divider {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px; /* Line thickness */
  transform: translateY(-50%);
}
 
.vertical-divider {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px; /* Line thickness */
  transform: translateX(-50%);
}
 
@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }
 
  .horizontal-divider, .vertical-divider {
    display: none;
  }
}
</style>