        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-size: 13px;
        }

        body{
            font-family: 'Helvetica', 'Arial', sans-serif;
            text-align: center;
            background-color: baby-blue;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            width: 100%;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradientAnimation 15s ease infinite;
          }
          @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
          }
          .ALL-CONTENT{
            animation: load-ALL 2s ease-in;
          }


          /* unifed *//*start*/
          p{
            backdrop-filter: blur(10px);
          }
          /* unifed *//*end*/


            /*START LOAD*/

        .loader{
          position: fixed;
          z-index: 99;
          top:0;
          left: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
          background-size: 400% 400%;
          animation: gradientAnimations 2s ease infinite;
        }
        @keyframes gradientAnimations {
          0% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
          100% { background-position: 0% 50%; }
        }
      .loader img{
          width: 100px;
          height:100px;
      }


      .loader  {
          animation: fadeOut 8s ease-in;
          animation-fill-mode: forwards;
      }

      @keyframes fadeOut {
          
          100%{
              visibility: hidden;
          }
      }

      /*END LOAD*/
          nav {
            background-color: #333333b7;
            position: fixed;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            z-index: 9999999;
          }
          
          nav ul {
            list-style-type: none;
            backdrop-filter: blur(10px);
            padding: 0;
            margin: 0;
            text-align: center;
          }
          
          nav li {
            display: inline;
            position: relative;
          }
          
          nav a {
            display: inline-block;
            font-weight: 500;
            font-size: 14px;
            padding: 14px 20px;
            text-decoration: none;
            color: white;
            position: relative;
            transition: all 0.3s;
          }
          
          nav a:after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 3px;
            bottom: 0;
            border-radius: 20px;
            left: 0;
            background: linear-gradient(244deg, #ff6600, #fff200);
            transform-origin: bottom right;
            transition: transform 0.3s;
          }
          
          nav a:hover:after {
            transform: scaleX(1);
            transform-origin: bottom left;
          }
          
          nav a:hover {
            color: #ff6600;
          }
          .activ{
            color: #ff6600;
            border-bottom: 2px solid #fff200;
          }
          /*////////////////////////////////////////////////*/
          
          #openPopupBtn{
            padding: 10px 20px;
            font-size: 18px;
            cursor: pointer;
          }
          #popup{
            display: none;
            position: fixed;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 100%;
            z-index: 10000;
            background: linear-gradient(255deg,rgb(93, 130, 136), rgb(53, 144, 209),rgb(12, 200, 147));
            justify-content: center;
            align-items: center;
          }
          .ccc{
            background: rgba(63, 185, 149, 0.866);
            padding: 14px;
            border-radius: 20px;
            box-shadow: 0 0 10px rgb(33, 163, 255);
          }
          #popupContent{
            
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 0 10px rgb(33, 163, 255);
          }
          #closePopupBtn{
            font-size: 30px;
            box-shadow: 0 0 10px white;
            background: white;
            border-radius: 20px;
            cursor: pointer;
          }
          .hidden {
            display: none;
          }

          /*////////////////////////////////////////////////*/
          header {
            background-image: url('images/fotor-ai-2023110418571.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            mask: linear-gradient(rgba(0, 0, 0, 0.426), rgba(0, 0, 0, 0.979));
            height: 60vh;
            border-radius: 20px;
            color: #fff;
            position: relative;
            overflow: hidden;
          }


          
          header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
          }
          
          h1 {

            font-size: 2rem;
            margin-bottom: 20px;
            border-right: 1px solid yellow;
            white-space: nowrap;
            overflow: hidden;
            
          }
          .switching::before{
            content: 'البيض';
            position: relative;
            font-size: 2rem;
            animation: type 10s  infinite;
            transform: translateX(10%);
          }
          @keyframes type{
            0%{
              color: white;
              transform: translateY(10%);
            }
            1%{
              color: #ff0062;
              content: 'الكتاكيت      ';
              opacity: 1;
              transform: translateY(0%);
            }
            29%{

              transform: translateY(10%);
            }
            30%{
              opacity: 1;
              color: #ff6600;
              content: 'الصغيرة  ';
              transform: translateY(0%);
            }
            59%{
              transform: translateY(10%);
            }
            60%{
              opacity: 1;
              color: #fbff04;
              content: 'كل الدواجن      ';
              transform: translateY(0%);
            }
            89%{
              transform: translateY(10%);
            }
            100%{
              opacity: 1;
              color: #87fe00;
              content: 'الكل';
              transform: translateY(0%);
            }
          }
          
          p {
            font-size: 1.3rem;
            margin-bottom: 30px;
          }
          
          button {
            padding: 10px 20px;
            font-size: 1.2rem;
            background: linear-gradient(234deg, rgba(255, 0, 247, 0.957), rgba(101, 17, 228, 0.689), rgba(0, 208, 255, 0.922));
            color: #ffffff;
            box-shadow: 0 0 10px rgba(234, 7, 223, 0.695);
            border-radius: 20px;
            border: none;
            cursor: pointer;
            transition: 0.3s;
          }
          
          button:hover {
            background: linear-gradient(234deg, rgba(234, 7, 223, 0.695), rgba(101, 17, 228, 0.689), rgba(0, 128, 255, 0.701));

            transition: .4s;
          }
          
          
          @keyframes animateBackground {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
          }
          
          body {
            animation: animateBackground 10s linear infinite;
          }
          /*///////////////////////////////////////////////////*/
          
          /*///////////////////////////////////////////////////*/
          main {
            display: flex;
            justify-content: space-between;
            display: grid;
            gap: 3;
            padding: 20px;
          }
          
          article, aside {
            flex: 1;
            padding: 20px;
            background-color: #f4f4f4;
            border-radius: 20px;
          }
          
          h2, h3 {
            color: #333;
          }
          
          aside {
            margin-left: 20px;
            border-radius: 20px;
            background: linear-gradient(255deg, #ffffff, #e73c7e, #23a6d5,white);
          }
          
          p {
            margin: 10px 0;
          }
          /*///////////////////////////////////////*/
          
          /*//////////////////////////////////////*/
          #main {
            display: flex;
            justify-content: space-between;
            padding: 20px;
          }
          
          section, aside {
            flex: 1;
            padding: 20px;
            background-color: #f4f4f4;
            border-radius: 20px;
          }
          
          h2, h3 {
            color: #333;
          }
          
/* About Section */
.about {
    width: 90%;
    padding: 20px;
    background: #FFF8DC;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: #DC2626;
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: .7s;
}
.about-image img:hover{
  transform: translateY(-10px);
  scale: 1.01;
}
/*//////////////////*/
/* Hero Section */

.son-all{
  width: 100%;
  display: block;
  margin-top: 5%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.son-content .son-btn2{
background: none;
border: 2px solid #DC2626;
}
.about-content .farm {
  width: 100%;
  transition: .6s;
}
.about-content .farm:hover{
  transform: translateY(-10px);
  scale: 1.6;
}



          .product-list {
            display: flex;
            justify-content: space-around;
          }
          
          .product {
            text-align: center;
            margin-bottom: 20px;
          }

          img {
            width: 200px;
            height: 150px;
            background: linear-gradient(from 360deg, rgb(216, 216, 216), rgb(123, 99, 99), rgb(219, 106, 106));
            object-fit: cover;
            border-radius: 20px;
          }
          
          button {
            padding: 8px 16px;
            background-color: #ff6600;
            color: #fff;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
          }
          
          button:hover {
            background-color: #e65c00;
          }
          
          aside {
            margin-left: 20px;
          }
          
          #cart {
            position: sticky;
            top: 20px;
            color: rgb(111, 111, 111);
            background-image: url(images/lightning.png);
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
          }
          
          #cart-items {
            list-style: none;
            padding: 0;
          }
          
          #cart-items li {
            margin-bottom: 10px;
          }
          
          #cart-total {
            font-weight: bold;
          }
          /*//////////////////////////////*/
          
          /*//////////////////////////////*/
          
          footer {
            background-color: #333;
            color: #fff;
            font-size: 5px;
            padding: 40px 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
          }
          
          .footer-content {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            font-size: 10px;
            margin: 0 auto;
            padding: 0 20px;
          }
          
          .footer-info, .footer-contact {
            flex: 1;
            padding: 20px;
          }

          .footer-social a{
            padding: 7%;
            border-radius: 50%;
          }
          .footer-social a .social{
            background: none;
          }
          
          
          .footer-bottom {
            text-align: center;
            margin-top: 20px;
            border-radius: 20px;
            font-size: 12px;
          }
          
          .contact-container{
            display: flex;
            align-items: center;
            justify-content: space-evenly;
          }
          .contact{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
          }
          .contact-title h5{
            font-weight: 600;
            color: #e73c7e;
            font-size: 20px;
            margin-bottom: 5px;
          }
          .contact-title hr{
            border: none;
            width: 120px;
            height: 5px;
            border-radius: 12px;
            margin-bottom: 20px;
            background: linear-gradient(234deg, #e73c7e, rgb(101, 17, 228));
          }
          .contact-inputs{
            width: 200%;
            height: 50px;
            border: none;
            border-radius: 50px;
            outline: none;
            font-weight: 500;
            background: linear-gradient(234deg, rgba(234, 7, 223, 0.695), rgba(101, 17, 228, 0.689), rgba(0, 128, 255, 0.701));
            color: #ffffff;
            padding-left: 25px;
            transition: .2s;
          }
          .contact-inputs::placeholder{
            color: white;
            text-shadow: 0px 0px 10px rgb(255, 255, 255);
          }
          .contact-inputs:focus{
            filter: drop-shadow(0px 0px 12px rgba(234, 7, 223, 0.695) ) ;
          }
          .contact textarea{
            height: 140px;
            padding-top: 15px;
            border-radius: 20px;
          }
          
          .contact button{
            display: flex;
            align-items: center;
            padding: 15px 30px;
            font-size: 16px;
            gap: 10px;
            transition: .7s;
          }
          
          .contact button img{
            width: 28px;
            height: 20px;
          }

          
          @keyframes wave {
            0% {
              transform: translateX(-100%);
            }
            100% {
              transform: translateX(100%);
            }
          }
          
          .footer-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to right, #ff6600, #e65c00);
            animation: wave 10s linear infinite;
            z-index: -1;
          }






          @media screen and (max-width: 700px){
            #main{
                display: block;
            }
            .product img{
              width: 90%;
            }
            .about-content{
              display: block;
            }
            .son-all{
              margin-top: 12%;
            }
            header{
              height: 40vh;
            }
          }