* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== Smooth Scrolling ===== */
html { scroll-behavior: smooth; }

body {
    background: #f5f7fa;
    color: #333;
}

/* ===== Popup Notification ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.popup.active {
    visibility: visible;
    opacity: 1;
}

.popup-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    width: 320px;
    animation: popupScale 0.4s ease;
}

@keyframes popupScale {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    font-size: 40px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 20px;
}

.popup-icon.success {
    background: #0f766e;
}

.popup-icon.error {
    background: #e63946;
}

.popup-box button {
    padding: 10px 30px;
    background: #0f766e;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}


/* ===== Navbar ===== */
header {
    background: #0f766e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height:4.5rem;
    width: 4.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ffd166;
}

/* ===== Side Menu ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    margin: 20px 0;
    text-align: center;
}

/* overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.drawer-close {
    display: none;
    text-align: right;
    padding: 10px 20px;
}


.drawer-close i {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}


/* ===== Hero Section ===== */
.hero {
    padding: 110px 20px;
}

@keyframes floatImage{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-2.4rem);
    }
    100%{
        transform: translateY(0);
    }
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    /* border: 10px solid #0f766e; */
    box-shadow: 0 0 25px #0f766e;
    transition: 0.4s ease;
    animation: floatImage 4s ease-in-out infinite;
}

.hero-image img:hover {
    box-shadow: 0 0 25px #0f766e,
                0 0 35px #0f766e,
                0 0 45px #0f766e;
}

.hero-content h4 {
    color: #0f766e;
    margin-bottom: 10px;
    font-size: 22px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 12px;
}

.hero-content h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.hero-content h3 span {
    color: #0f766e;
}

.hero-content p {
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
    font-size: 18px;
}

/* ===== Typing Animation Text ===== */
.typing-text {
    color: #0f766e;
    border-right: 3px solid #0f766e;
    padding-right: 6px;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #0f766e; }
    100% { border-color: transparent; }
}


.social-icons {
    margin-bottom: 25px;
}


.social-icons a {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #0f766e;
    /* border: 0.2rem solid #0f766e(125, 125, 249); */
    border: 2px solid #0f766e;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s ease;
}

.social-icons a:hover {
   transform: scale(1.2) translateY(-10px);
    background: #0f766e;
    color: #fff;
    box-shadow: 0 0 25px #0f766e;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #115e59;
    transform: scale(1.05);
}

/* ===== About Section ===== */
.about-section {
    background: #dff9f6;
    padding: 100px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Left text side */
.about-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-content h2 span {
    color: #0f766e;
}

.about-content h3 {
    font-size: 28px;
    color: #0f766e;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 35px;
}

.about-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.about-btn:hover {
    background: #115e59;
    transform: scale(1.05);
}

/* Right image side */
.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0f766e;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.about-image img:hover{
transform: scale(1.08);
}

/* ===== Importation Section ===== */
.import-section {
    background: #ffffff;   /* white background */
    padding: 100px 20px;
}

.import-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Left text side */
.import-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.import-content h2 span {
    color: #0f766e;
}

.import-content h3 {
    font-size: 28px;
    color: #0f766e;
    margin-bottom: 20px;
}

.import-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 35px;
}

.import-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.import-btn:hover {
    background: #115e59;
    transform: scale(1.05);
}

/* Right image side */
.import-image {
    display: flex;
    justify-content: center;
}

.import-image img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}

.import-image img:hover {
    transform: scale(1.05);
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 60px;
}

.section-title span {
    color: #0f766e;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 25px;
    transition: 0.4s ease;
}


.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 3px solid #0f766e;
}

.service-card .icon {
    font-size: 60px;
    color: #0f766e;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
}

.service-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.service-btn:hover {
    background: #115e59;
    transform: scale(1.05);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    margin-bottom: 60px;
}

.contact-title span {
    color: #0f766e;
}

/* Form */
.contact-form {
    max-width: 900px;
    margin: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #0f766e;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 8px rgba(15, 118, 110, 0.3);
}

.contact-form textarea {
    height: 220px;
    resize: none;
    margin-bottom: 30px;
}

.contact-btn {
    padding: 14px 50px;
    background: #0f766e;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contact-btn:hover {
    background: #115e59;
    transform: scale(1.05);
}

#formStatus {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: #dff9f6;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-socials {
    margin-bottom: 25px;
}

.footer-socials a {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #0f766e;
    border: 2px solid #0f766e;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2) translateY(-10px);
    background: #0f766e;
    color: #fff;
    box-shadow: 0 0 25px #0f766e;
}

.footer-text {
    font-size: 16px;
    color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .footer-socials a {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin: 0 6px;
    }

    .footer-text {
        font-size: 14px;
    }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form textarea {
        height: 180px;
    }
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 25px;
    }

    .section-title {
        font-size: 34px;
    }
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .import-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .import-image img {
        width: 320px;
    }

    .import-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .import-section {
        padding: 70px 15px;
    }

    .import-content h2 {
        font-size: 34px;
    }

    .import-content h3 {
        font-size: 24px;
    }

    .import-content p {
        font-size: 16px;
    }

    .import-image img {
        width: 260px;
    }
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        width: 300px;
        height: 300px;
    }

    .about-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 70px 15px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content h3 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-image img {
        width: 240px;
        height: 240px;
    }
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 6px 16px;   /* 🔥 reduce header height */
    }

    .nav-links {
    position: fixed;
    top: 0;
    right: -180px;   /* 🔥 smaller drawer */
    height: 100vh;
    width: 160px;
    background: #0f766e;
    flex-direction: column;
    padding-top: 70px;
    transition: right 0.3s ease;
    z-index: 2000;
}

.nav-links.active {
    right: 0;
}

    .logo img {
        height: 3.5rem;
        width: 3.5rem;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .drawer-close {
    display: block;
}
}

/* ===== Desktop drawer reset ===== */
@media (min-width: 769px) {

    .drawer-close {
        display: none !important;
    }

    .nav-links li {
        margin: 0;
    }

}


@media (max-width: 480px) {
    .navbar {
        padding: 5px 14px;
    }

    .logo img {
        height: 3.2rem;
        width: 3.2rem;
    }

    .nav-links {
        top: 44px;
    }

}


/* ===== Preloader ===== */
#preloader {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: #0f766e;
display: flex;
align-items: center;
justify-content: center;
z-index: 99999;
}

.loader {
width: 50px;
height: 50px;
border: 5px solid #fff;
border-top: 5px solid transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
to { transform: rotate(360deg); }
}


/* ===== Scroll Reveal ===== */
.reveal {
opacity: 0;
transform: translateY(60px);
transition: 0.9s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* ===== Back To Top Button ===== */
#backToTop {
position: fixed;
bottom: 30px;
right: 30px;
background: #0f766e;
color: #fff;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
cursor: pointer;
display: none;
font-size: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

#backToTop:hover {
background: #115e59;
}


/* ===== Navbar Active Link ===== */
.nav-links a.active {
color: #ffd166;
border-bottom: 2px solid #ffd166;
}




<section id="arrival" class="shop-section">
  <div class="shop-header">
    <h2>New Arrivals</h2>
  </div>

  <div class="shop-grid">

    <!-- PRODUCT -->
    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-39%</span> -->
        <img src="images/New/lunch box.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Rechargeable Lunch Box</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵500.00</span><br>
          <span class="new">₵450.00</span>
        </div>
          <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Rechargeable Lunch Box">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
        </a>
      </div>
    </div>

    <!-- COPY THIS BLOCK FOR ALL PRODUCTS -->
    <!-- Just change image + name + price -->

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/ringlight.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>10inch Ring-Light + 2.1m Stand</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵250.00</span><br>
          <span class="new">₵180.00</span>
        </div>
          <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order 10inch Ring-Light + 2.1m Stand">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
        </a>
      </div>
    </div>

    <!-- 👉 ADD ALL OTHER PRODUCTS HERE INSIDE SAME GRID -->

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/Perfume.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Ladies Perfume (four set)</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵135.00</span><br>
          <span class="new">₵89.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Ladies Perfume (four set)">
          <button><i class="fa-solid fa-cart-shopping"></i></button>
        </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/newheadset.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>New Bluetooth Headset</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵250.00</span><br>
          <span class="new">₵170.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order New Bluetooth Headset">
           <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/nails.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Already made Nails</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵30.00</span><br>
          <span class="new">₵25.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Already made Nails">
             <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/chair.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Salon Leather Chair</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵700.00</span><br>
          <span class="new">₵650.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Salon Leather Chair">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/neck.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Neck Headset</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵75.00</span><br>
          <span class="new">₵50.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Neck Headset">
           <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/sandals.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Ladies Sandals</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵250.00</span><br>
          <span class="new">₵190.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Ladies Sandals">
           <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/car.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Car Jumper (4 in 1)</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵650.00</span><br>
          <span class="new">₵600.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Car Jumper (4 in 1)">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/headset.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Bluetooth Headset</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵150.00</span><br>
          <span class="new">₵100.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Bluetooth Headset">
           <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/juicer.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Juicer</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵380.00</span><br>
          <span class="new">₵330.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Juicer">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>

    <div class="shop-card">
      <div class="shop-image">
        <!-- <span class="badge">-34%</span> -->
        <img src="images/New/Bed.jpeg">

        <div class="shop-icons">
          <i class="fa-regular fa-heart"></i>
          <i class="fa-solid fa-repeat"></i>
          <i class="fa-regular fa-eye"></i>
        </div>

        <div class="shop-dots">
          <span class="active"></span>
          <span></span>
          <span></span>
        </div>
      </div>

      <h4>Babies Foldable Bed</h4>

      <div class="shop-price">
        <div>
          <span class="old">₵1200.00</span><br>
          <span class="new">₵970.00</span>
        </div>
         <a target="_blank" href="https://wa.me/233240668068?text=Hello itech Imports, I want to order Babies Foldable Bed">
            <button><i class="fa-solid fa-cart-shopping"></i></button>
         </a>
      </div>
    </div>


  </div>
</section>