/*
Theme Name: Minimal Woo
Theme URI: https://weruson.site/weruson
Author: Waweru Njoroge
Author URI: https://weruson.site
Description: A minimalist WooCommerce theme with clean design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-woo
*/

/* Import Nunito Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Sono:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Sono:wght@200..800&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Waterfall&display=swap');



:root {
    --primary-color: #555555;
    --accent-color: #f47c30;
    --title-color: #F15521;
    --header-bg: transparent;
    --header-bg-scrolled: #F4F4F4;
    --header-text-color: #555555;
    --header-text-scrolled: #555;
    --base-dark: #2c3e50;
    --text-light: #888888;
    --border-color: #dddddd;
    --font-base: 'Nunito', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset + Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 2.5;
    color: var(--primary-color);
    background:#fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
}

/* Hide WP Page Titles */
.page .entry-title {
    display: none;
}



/* ======= HEADER ======= */
.site-header {
   position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--header-bg);
    
    color: var(--header-text-color);
   /* padding: 1rem 2rem;*/
    z-index:1000;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    
  /*position: relative;*/
}

/* When scrolled */
.site-header.scrolled {
    background-color: var(--header-bg-scrolled);
    color: var(--header-text-scrolled);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding-top:0;
    padding-bottom:10px;
}

/* Header inner */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left:150px;
}

.site-title {
    font-family: "Waterfall", cursive;
 /* text-transform: uppercase;*/
    font-size: 1.5rem;
    margin: 0 150px 0 20px;
   
    font-weight: 900;
    color: var(--title-color);
    display: flex;
    justify-content: flex-start;
}

.site-title a {
    color: inherit;
}

.site-description {
    font-size: 0.875rem;
    color: white;
    margin-top: 0.25rem;
    opacity: 0.8;
    text-align: center;
}

/* ======= HERO SECTION ======= */



.hero-image img {
    opacity:7;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
   /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: right;
}



.hero {
      text-align: left;
          /*new code*/
      display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    }

    .hero h4 {
      font-size: 18px;
      margin: 0;
      color: #666;
    }

    .hero h1 {
      font-size: 20px;
    
      font-weight: bold;
    }

    .hero h1 span {
      color: var(--title-color); 
    }

    .hero p {
      font-size: 14px;
      margin-bottom: 10px;
      color:var(--primary-color) ;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
    }

    .hero-buttons a {
      padding: 5px 25px;
      font-size: 16px;
      text-decoration: none;
      border: none;
      border-radius: 5px;
      color: #fff;
      cursor: pointer;
    }

    .resume-btn {
      background-color: #ff4b5c;
    }

    .contact-btn {
      background-color: #2c3e50;
    }



/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align to right */
    flex-grow: 1; /* Take available space */
}

.primary-menu {
     display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px; /* Use gap instead of margins */
}

.primary-menu a {
    color:#2c3e50;
    /*color: #1D1A05;*/
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    font-family:'Sono';
    font-size: 0.9rem;
     pointer-events: auto;
    
    z-index: 1001;
}

.primary-menu a:hover {
    opacity: 0.8;
}

.primary-menu > li {
    margin: 0; /* space between items */
}

.primary-menu > li a {
    text-decoration: none;
    display: flex;
    flex-direction:row;
    align-items: center;
    color:#2c3e50;
}

/* WooCommerce menu links container */
.woocommerce-menu-links {
   display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px; /* Add some spacing from menu */
}

/* Cart link styling */
.cart-link {
    display: flex;
    align-items: center;
    position: relative;
}

/* Cart count badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* SVG icons styling */
.cart-link svg,
.account-link svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
}


/* Main Content */
.main-content {
   
    flex: 1;
    padding: 2rem;
    max-width: 1000px;
    margin: 20px auto;
    width: 100%;
}
/*****************************************************************************
***************Plugins Page CSS***********************************************
******************************************************************************/

.Plugins-page {
  max-width: 1200px;
  margin: 0 auto;
}

.Plugins-page span
{
    display:flex;
    text-align:center;
    justify-content:center;
    margin-bottom: 5px;
}

.subnote {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.intro-title {
    font-family:'Lato';
    text-align:center;
    justify-content:center;
  font-size: 18px;
  margin-bottom: 0px;
  color: var(--primary-color);
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plugin-tile {
   background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
}

/* Title + Subtext */
.plugin-title {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 16px 4px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.plugin-img {
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.plugin-tile img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}


.plugin-subtitle {
  font-size: 13px;
  margin: 0 16px 8px;
  color: #777;
}

/* Price Row */
.plugin-price-row {
  margin: 0 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
}

.original-price {
  color: #aaa;
  text-decoration: line-through;
}

.discounted-price {
  color: #1a73e8;
  font-weight: bold;
}

/* Stars */
.plugin-rating {
  font-size: 16px;
  color: #ffc107;
  margin: 8px 16px;
}

/* Actions */
.plugin-actions {
  margin: 12px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-btn {
  background-color: #f1f3f4;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.details-btn {
  background-color: #624bff;
  color: white;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
}
.plugin-desc {
  margin: 12px 0;
  font-size: 14px;
  color: #555;
}

.plugin-price {
  font-weight: bold;
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
}

.buy-btn {
  display: inline-block;
  padding: 0px 26px;
  background-color:var(--title-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.buy-btn:hover {
  background-color: var(--title-color);
  opacity:7;
}
.plugin-title:hover {
  white-space: normal;
}

@media screen and (max-width: 1024px) {
  .plugin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
    
   /*Hero section styles*/
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
    margin-top:50px;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 22px;
    line-height: 1.5;
   text-align: justify;

  }

  .hero-buttons {
    justify-content: left;
  }

  .hero-buttons a {
    font-size: 22px;
    padding: 0px 25px;
    font-weight:600;
    margin-top:5px;
  }


    
   /*plugin page stles*/
  .plugin-grid {
    grid-template-columns: 1fr;
  }

  .Plugins-page {
      margin-top:50px;
    padding: 20px;
  }

  .intro-title {
    font-size: 16px;
    text-align: center;
  }

  .plugin-tile {
    padding: 20px 16px;
  }

  .plugin-desc {
    font-size: 15px;
  }

  .plugin-price {
    font-size: 18px;
  }

  .buy-btn {
    width: 100%;
    padding: 12px;
  }
}






/******************************************************************************
 *****************************Landing Page Styles******************************
 ******************************************************************************/
/* Product Hero Section */
.product-hero {
   display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
   /* background-color: #f9f3e9;*/
    background-color:#ecf87f;
    border-radius: 8px;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0a5e79;
}

.text-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-btn {
    background-color: #0a5e79;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 1rem;
}

.cta-btn:hover {
    background-color: #08455e;
}



.price {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  font-family: 'Lato', sans-serif;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.product-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.product-item h3 {
    margin: 0.5rem 0;
    color: #333;
}

.product-price {
    font-weight: 700;
    color: #0a5e79;
    margin: 0.5rem 0;
}

.buy-now-btn {
    display: inline-block;
    background-color: rgba(172, 251, 30, 0.7);
    color: #333;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.buy-now-btn:hover {
    background-color: rgba(172, 251, 30, 1);
}

/* Product Details */
.product-details {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ecf87f;
    border-radius: 8px;
}

.details-container {
    max-width: 800px;
    margin: 0 auto;
}

.product-details h2 {
    color: #0a5e79;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-details h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
}

.product-details p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.features-list {
    text-align: center;
}

.features-list ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin: 1rem auto;
}

.features-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "•";
    color: #0a5e79;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials h3 {
    color: #0a5e79;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Creates the circle */
    overflow: hidden; /* Clips anything outside the circle */
    background-color: #f9f3e9; /* Fallback color */
    display: flex; /* Ensures proper alignment for the image */
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

.author-image img {
    width: 100%; /* Fills the container width */
    height: 100%; /* Fills the container height */
    object-fit: cover; /* Ensures the image covers the area without stretching */
    object-position: center; /* Centers the image within the circle */
}

.testimonial-author p {
    color: #333;
    font-weight: 600;
    margin: 0;
}

/*socials css*/
.socials {
  /*background-color:#d9cef0;*/
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.socials h4 {
  margin-bottom: 10px;
  color: #0a5e79;
  font-size: 20px;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--title-color);
  background-color: #0a5e79;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
}

.social-links a i {
  font-size: 16px;
}

.social-links a:hover {
  background-color: #0a5e79;
  color: #ffffff;
}

.social-links a.tiktok { background-color: #0a5e79; }
.social-links a.facebook { background-color: #0a5e79; }
.social-links a.instagram { background-color: #0a5e79; }
.social-links a.whatsapp { background-color: #0a5e79; }


/* Footer Styles */
.site-footer {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  background: transparent;
  color: #333;
  padding: 10px 20px 5px; /* Reduced bottom padding */
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05); /* subtle divider */
}

.single-row-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  gap: 10px;
}

.footer-title h3 {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  color: #333;
}

.footer-email a,
.footer-phone a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-email a:hover,
.footer-phone a:hover {
  color: #f47c30;
}

.footer-social a {
  margin: 0 6px;
  display: inline-block;
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.footer-social img:hover {
  filter: none;
}

.footer-copyright {
  text-align: center;
  padding: 5px 0 0; /* minimal bottom space */
  margin: 0;
  font-size: 11px;
  color: #666;
}


@media (max-width: 768px) {
  .single-row-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    text-align: center;
  }
}


/* Help Page Styles */
.help-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.help-container h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #222;
}

.help-container p {
    margin-bottom: 15px;
}

.faq h3,
.contact-info h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.faq ul {
    list-style: none;
}

.faq li {
    list-style: none;
    margin-bottom: 10px;
    background: var(--light-color);
    padding: 10px;
    border-radius: 4px;
}

.faq li strong {
    color: #333;
}

/*Reducing the font size on very small screens*/
@media (max-width: 480px) {
    .site-title {
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) {
    .product-hero {
        display: block;
        gap: 1rem;
         gap: 4rem;
    max-width: 100vw;
    margin: 10px;
    padding:5px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* General mobile adjustments */
    body {
        padding: 0;
        margin: 0;
    }
    
    .text-content h1 {
    font-size: 1.5rem;
        
    }
    .primary-menu > li {
        white-space: nowrap;
    }
    
    /* Header adjustments */
    .header-container {
        display: flex;
        justify-content: space-between; /* This will push title left and menu right */
        align-items: center;
        padding: 0 15px; /* Adjust padding as needed */
    }
    
    .main-content {
        padding: 1.5rem;
    }

    /* Header adjustments */
    .site-header {
        padding: 8px;
       /* flex-wrap: wrap;*/
    }


    .site-branding {
        order: 1; /* Keeps title on left */
        margin: 0;
        flex: 0 0 auto; /* Prevents shrinking */
    }
   
   

    .site-title {
       
         margin: 0; /* Remove any existing margins */
        font-size: 2.0rem;
        white-space: nowrap; /* Prevent title from wrapping */
    }

    .site-description {
        display: none;
    }


    .text-content, 
    .image-content {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        padding: 0 8px;
        margin: 0 auto;
    }

    .image-content {
        order: -1;
        margin-bottom: 8px;
    }

    /* Product grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
        margin: 16px 0;
    }

    .product-item {
        padding: 12px;
        margin: 0 4px;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

    .testimonial-item {
        padding: 16px 12px;
        margin: 0 4px;
    }

    /* Product details */
    .product-details {
        padding: 16px 8px;
        margin: 16px 0;
    }

    /* Social links */
    .socials {
        padding: 16px 8px;
        margin: 16px 0;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    /* Buttons */
    .cta-btn,
    .buy-now-btn {
        padding: 8px 16px;
        margin: 8px 0;
    }
}


/* WooCommerce Menu Links */
.woocommerce-menu-links {
    display: flex;
    align-items: center;
    gap: 20px;
   /* margin-left: auto;*/
}

.cart-link,
.account-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    position: relative;
}



.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}


/* Mobile Styles */
@media (max-width: 768px) {
    .woocommerce-menu-links {
        margin-left: 0;
        padding: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 15px;
    }
    
     .main-navigation {
        order: 2; /* Puts menu on right */
        flex: 0 0 auto;
    }
    
    .main-navigation .woocommerce-menu-links {
        display: flex;
    }
    
    .primary-menu {
        display: flex;
        flex-direction: column;
    }
    
    .menu-toggle {
        display: flex; /* Ensure toggle is visible */
        margin-left: auto; /* Push to far right */
        padding: 10px;
    }
}

/* Tablet adjustments (768px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 8px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

 

    .product-item {
        padding: 12px;
    }
}

/* Lipa Mdogo (Layby) Page Styles */


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Mobile adjustments for Lipa Mdogo page */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .layby-hero h1 {
        font-size: 2rem;
    }
    
    .layby-hero .subtitle {
        font-size: 1.1rem;
    }
}


/*SINGLE PRODUCT CSS*/
/* Basic page styling */
body.single-product {
 /* background:#f9f3e9;*/
  color: #333;
  font-family: Arial, sans-serif;
}

/* Product title */
.single-product .product_title {
  color: #0a5e79;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Price */
.single-product .summary .price {
  color: var(--title-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Description */
.single-product .woocommerce-product-details__short-description {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  margin: 15px 0;
  color: #333;
}

/* Add to cart button */
.single-product .single_add_to_cart_button {
  background-color: #0a5e79;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.single-product .single_add_to_cart_button:hover {
  background-color: #333;
}

/* Product meta (SKU, categories, tags) */
.single-product .product_meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

.single-product .product_meta span {
  display: block;
  margin-bottom: 5px;
}

/* Tabs (description, additional info, reviews) */
/*.single-product .woocommerce-tabs .tabs li a {
  background: #f9f3e9;
  color: #333;
  padding: 10px 20px;
  border-radius: 3px 3px 0 0;
  margin-right: 5px;
}

.single-product .woocommerce-tabs .tabs li.active a {
  background: #acfb1e;
  color: #0a5e79;
  font-weight: bold;
}

.single-product .woocommerce-Tabs-panel {
  border: 1px solid #f9f3e9;
  background: #ffffff;
  padding: 20px;
  border-radius: 0 3px 3px 3px;
}*/

/* Gallery thumbnails */
.single-product .woocommerce-product-gallery__wrapper {
  border: 1px solid #f9f3e9;
  padding: 5px;
  border-radius: 3px;
}

.single-product .woocommerce-product-gallery__image img {
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.single-product .woocommerce-product-gallery__image img:hover {
  transform: scale(1.03);
}

/* Related products section */
.single-product .related.products h2 {
  color: #0a5e79;
  margin-top: 30px;
}

.single-product .related.products ul.products li.product a.button {
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 3px;
  padding: 8px 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.single-product .related.products ul.products li.product a.button:hover {
  background-color: #0a5e79;
  color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #fff;
    background-color: #fff;
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 4px 4px 0 0;
    margin: 0 -5px;
    

}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
    background:#f9f3e9;
}



/*table styling for single product*/

/*.spec-table h2{
    padding:20px;
    text-align:center;
    align-items:center;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 1em 0;
}

.spec-table thead {
  background-color: #f5f5f5;
}

.spec-table th,
.spec-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.spec-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

@media screen and (max-width: 600px) {
  .spec-table thead {
    display: none;
  }

  .spec-table, 
  .spec-table tbody, 
  .spec-table tr, 
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
  }

  .spec-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .spec-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
}*/


/* Existing table styles */
.spec-table h2 {
    padding: 20px;
    text-align: center;
    align-items: center;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 1em 0;
    overflow-x: auto; /* Allows horizontal scrolling */
    display: block; /* Changed for mobile */
}

.spec-table thead {
    background-color: #f5f5f5;
}

.spec-table th,
.spec-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    min-width: 120px; /* Prevents cell collapse */
}

.spec-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Enhanced Mobile Styles */
@media screen and (max-width: 768px) {
    .spec-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        white-space: nowrap; /* Prevents line breaks */
        margin: 1em 0;
        border: 1px solid #eee; /* Container border */
    }
    
    .spec-table table {
        width: auto; /* Let table expand naturally */
        min-width: 100%; /* At least full container width */
    }

    .spec-table thead {
        display: table-header-group; /* Keep headers visible */
    }

    .spec-table th,
    .spec-table td {
        padding: 10px 12px;
        white-space: normal; /* Allow text wrapping within cells */
        word-break: break-word; /* Prevent long words from breaking layout */
    }

    /* Optional: Add visual indicator for scrollable tables */
    .spec-table:after {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent-color);
        font-size: 20px;
        opacity: 0.7;
        pointer-events: none;
    }
    
    /* Ensure table doesn't push related products */
    .woocommerce-tabs .panel {
        overflow: hidden; /* Contain table scroll */
    }
}

/*SALE LABLE STYLING*/
/* Sale label styling */
.woocommerce span.onsale {
  background-color:#2c3e50; /* bright green for visibility */
  color: #0a5e79; /* deep teal text for contrast */
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 10px;
  font-size: 0.85rem;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.woocommerce ul.products li.product .onsale {
  top: 10px;
  left: 10px;
}

/*Add to cart button styling*/
.woocommerce div.product form.cart .button{
    background-color:#f47c30;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 


body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link)
{
    
   /* background-color: #57b33e;*/
    color:#333;
}



/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.6);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-open .mobile-menu-overlay {
    display: block;
    opacity: 1;
}

.mobile-menu-open .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color:  var(--title-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.mobile-menu li {
    margin-bottom: 10px; /* Reduced gap between items */
}

.mobile-menu a {
    color:  var(--title-color);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 8px 0;
    transition: opacity 0.2s;
}

.mobile-menu a:hover {
    opacity: 0.8;
}

/* WooCommerce links in mobile menu */
.mobile-menu .woocommerce-menu-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Update menu toggle for mobile */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: var(--title-color);
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
    }
    
    .primary-menu {
        display: none; /* Hide desktop menu on mobile */
    }
    
    /* Show mobile menu when toggled */
    .mobile-menu-open .primary-menu {
        display: none;
    }
}



/* USER ACCOUNT CSS */
.woocommerce-account {
    max-width: 1200px;
    margin: 0 auto;
  
    background: #ffffff;
   /* border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

/* Navigation menu styling */
.woocommerce-MyAccount-navigation {
    width: 200px;
    float: left;
    border-right: 1px solid #eee;
    padding-right: 1rem;
    margin-right: 1rem;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background-color: #0a5e79;
    color: #ffffff;
    OPACITY:8;
}

/* Content area styling */
.woocommerce-MyAccount-content {
    overflow: hidden;
    padding-left: 1rem;
    border-left: 1px solid #eee;
}

.woocommerce-MyAccount-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

/* Tables within My Account */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.woocommerce-MyAccount-content table th {
    background-color: #f9f9f9;
    text-align: left;
}

/* Buttons in My Account */
.woocommerce-MyAccount-content .button {
    background-color: #0071a1;
    color: #fff;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.woocommerce-MyAccount-content .button:hover {
    background-color: #005a80;
}

/*SHOP BUY NOW BUTTON COLORS*/
   .woocommerce ul.products li.product .button{ display: inline-block;
    margin-top: 1em;
    background: #52b44b;
    color: #fff;
   }
   
   /*Additional information styling*/
   /* Style the Additional Information section for better readability and appeal */
.woocommerce table.shop_attributes {
  width: 90%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right:2rem;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.woocommerce table.shop_attributes th {
  background-color: #f0f0f0;
  text-align: left;
  font-weight: 600;
  width: 30%;
  color: #555;
   margin-left:2rem;
}

.woocommerce table.shop_attributes td {
  background-color: #f9f3e9;
  color: #444;
}

.woocommerce table.shop_attributes tr:nth-child(even) td {
  background-color: #fdfdfd;
}

/* Optional: Add a subtle hover effect */
.woocommerce table.shop_attributes tr:hover td {
  background-color: #f1f1f1;
}

/*Phone Number Styling*/
/* Phone Button Styling */
.phone-button-item{
    right:5;
     list-style: none;
}

.phone-button-item > li a {
  
}

.phone-button-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    background-color:#ecf87f; 
    color: #333 !important;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    transition: background-color 0.3s;
}

.phone-button-item a:hover {
    background-color:#ecf87f!important; /* Darker red on hover */
    opacity:7;
}

/* Adjust for mobile menu (optional) */
.mobile-menu-container .phone-button-item a {
    background: transparent;
    color: var(--title-color) !important; /* Match your mobile menu color */
}

@media (max-width: 768px) {
    .phone-button-item {
        display:none;
    }
}

 /* DEFAULT LIST STYLES FOR ALL PAGES */
.entry-content ul,
.entry-content ol,
.wp-block-list ul,
.wp-block-list ol,
.text-content ul,
.text-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    line-height: 1.7;
    color: var(--primary-color);
}

/* Unordered Lists (Bullet Points) */
.entry-content ul,
.wp-block-list ul,
.text-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.entry-content ul li,
.wp-block-list ul li,
.text-content ul li {
   /* position: relative;*/
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
}

.entry-content ul li::before,
.wp-block-list ul li::before,
.text-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Ordered Lists (Numbered) */
.entry-content ol,
.wp-block-list ol,
.text-content ol {
    list-style-type: none;
    counter-reset: custom-counter;
}

.entry-content ol li,
.wp-block-list ol li,
.text-content ol li {
    counter-increment: custom-counter;
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 2.5rem;
}

.entry-content ol li::before,
.wp-block-list ol li::before,
.text-content ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent-color);
}

/* Nested Lists */
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul,
.wp-block-list ul ul,
.wp-block-list ol ol,
.wp-block-list ul ol,
.wp-block-list ol ul,
.text-content ul ul,
.text-content ol ol,
.text-content ul ol,
.text-content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Description Lists */
.entry-content dl,
.wp-block-list dl,
.text-content dl {
    margin: 1.5rem 0;
}

.entry-content dt,
.wp-block-list dt,
.text-content dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.entry-content dd,
.wp-block-list dd,
.text-content dd {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}

/* List Items with Icons (optional) */
.entry-content ul.icon-list,
.wp-block-list ul.icon-list,
.text-content ul.icon-list {
    list-style: none;
    padding-left: 0;
}

.entry-content ul.icon-list li,
.wp-block-list ul.icon-list li,
.text-content ul.icon-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.entry-content ul.icon-list li::before,
.wp-block-list ul.icon-list li::before,
.text-content ul.icon-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a73e8"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* List in Cards */
.list-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}

.list-card ul,
.list-card ol {
    margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .entry-content ul,
    .entry-content ol,
    .wp-block-list ul,
    .wp-block-list ol,
    .text-content ul,
    .text-content ol {
        padding-left: 1.5rem;
    }
    
    .entry-content ol li,
    .wp-block-list ol li,
    .text-content ol li {
        padding-left: 2rem;
    }
}   


/*woocommerce extra styling*/
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb
{
    display:none;
    
}

body.single-product {
    margin-top:60px;
  font-family: var(--font-base);
 /* background: transparent;*/
  color: var(--primary);
  /*padding: 2rem;*/
}
.woocommerce .product .product_title {
    font-family:'Sono';
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--base-dark);
  margin-bottom: 1rem;
}

.woocommerce .product .price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.woocommerce .single_add_to_cart_button {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.woocommerce .single_add_to_cart_button:hover {
  background-color: var(--base-dark);
}

.woocommerce .quantity input.qty {
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  width: 60px;
  text-align: center;
  margin-right: 1rem;
  border-radius: 4px;
  color: var(--base-dark);
}
.woocommerce .product_meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.woocommerce div.product .woocommerce-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid #eee;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0.5rem 1rem;
  color: var(--base-dark);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.woocommerce div.product .woocommerce-Tabs-panel {
  color: var(--primary);
  line-height: 1.7;
}
.woocommerce .related.products {
  border-top: 1px solid #eee;
  margin-top: 4rem;
  padding-top: 2rem;
}

.woocommerce .related.products h2 {
  font-size: 1.6rem;
  color: var(--base-dark);
  margin-bottom: 2rem;
}

.woocommerce .related ul.products li.product {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}

.woocommerce .related ul.products li.product:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
/*******Product Description Gallery CSS*************/
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Mobile view: one column */
@media (max-width: 600px) {
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }
}

/**Addin Margin for shop Page***/
@media (max-width: 768px) {
  body.woocommerce.archive {
    margin-top: 50px; /* adjust as needed */
  }
}
/*****CONTACT FORM 7 CSS ********/
.custom-contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0px 20px;
  background-color: #fff;
  border-radius: 12px;
  /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);*/
  /*font-family: "Segoe UI", Roboto, sans-serif;*/
}

.contact-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color:var(--primary-color);
  text-align: center;
}

.contact-subtitle {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-col {
  flex: 1 1 calc(50% - 10px);
  min-width: 100%;
}

.form-col.full {
  flex: 1 1 100%;
}

@media (min-width: 640px) {
  .form-col {
    min-width: calc(50% - 10px);
  }

  .form-col.full {
    min-width: 100%;
  }
}

.form-grid label {
  display: block;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 15px;
  transition: border 0.2s;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: #333;
  background: #fff;
  outline: none;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid input[type="submit"] {
  background-color: var(--base-dark);
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-grid input[type="submit"]:hover {
  background-color: #222;
  
}
