@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


.menu-toggle{
    display:none;
    font-size:32px;
    color:#ff9900;
    cursor:pointer;
}

@media (max-width:768px){

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
position:relative;
}

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:15px;
        gap:10px;
    }

    nav.active{
        display:flex;
    }

    nav a{
        width:100%;
        text-align:center;
    }
}




.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo69 {
    font-size: 40px;
    text-decoration: none;
}




* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #b6ce17;
    text-align: center;
    padding-top: 132px;
}

/* ✅ تحسين الهيدر بشكل عصري */
header {
    background-color: #c9ec87;
    color: rgb(135, 138, 36);
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px; /* تقليص المسافة على اليمين واليسار لتحسين المساحة */
    border-radius: 15px; /* حواف مستديرة لإعطاء شكل جميل */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* تأثير ظل ثلاثي الأبعاد */
    transform: translateY(0); /* تحسين العرض الجمالي */
    transition: all 0.3s ease; /* تأثير الانتقال عند التمرير */



}

header img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    
}


header:hover {
    background-color: #e0eb8d; /* تغيير اللون عند التمرير */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* تحسين الظل عند التمرير */
    transform: translateY(-5px); /* تحريك الهيدر قليلاً للأعلى عند التمرير */
}



.logo69{
    text-decoration: none;
    color: #fa9a00;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

nav a {
    display: inline-block;
    background-color: orange;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

nav a:hover {
    background-color: darkorange;
}





.logo {
    text-decoration: none;
    color: #3a6cf4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;
}

.navigation a:hover {
    color: #ffd700;
}

/* ✅ تحسين عرض المنتجات */
.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 20px;
}

/* ✅ تصميم احترافي للمنتج */
.product {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.product p {
    font-size: 14px;
    color: #666;
}

/* button */
.buyButton {
    margin: 18px;
    padding: 15px 35px;
    border: none;
    outline: none;
    color: #FFF;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
  }
  .buyButton::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
  /* glow */
  .buyButton::before {
    content: "";
    background: linear-gradient(
      45deg,
      #FF0000, #FF7300, #FFFB00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
  }
  
  @keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
  }
  
  /* hover */
  .buyButton:hover::before {
    opacity: 1;
  }
  
  .buyButton:active:after {
    background: transparent;
  }
  
  .buyButton:active {
    color: #000;
    font-weight: bold;
  }
/* ✅ تحسين نافذة الطلب (المودال) */
.modal {
    display: none;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    max-width: 90%;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.modal:hover {
    transform: translate(-50%, -50%) scale(1.03);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.35);
}

.modal-header {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border 0.3s;
}

.modal input:focus,
.modal textarea:focus {
    border-color: #0078D7;
    outline: none;
    box-shadow: 0px 4px 6px rgba(0, 120, 215, 0.2);
}

.modal .submit-button {
    width: 100%;
    background: linear-gradient(135deg, #0078D7, #005bb5);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.modal .submit-button:hover {
    background: linear-gradient(135deg, #005bb5, #004494);
    transform: scale(1.05);
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.modal .close:hover {
    color: #d9534f;
}

/* ✅ تحسين الفوتر */
footer {
    background: #35aae0;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}



.footerr {
    background-color: #c7fe00;
    color: #cb0000;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}

.footerr-title {
    font-size: 0.8em;
    font-weight: 600;
    text-align: left;
    padding-right: 8em;
}

.footerr-title span {
    color: #ea9319;
}

.footerr .social-icons a{
    font-size: 1.3em;
    padding: 0 12px 0 0;
}












/* Default styles for larger screens (PCs) */
body {
    font-family: Arial, sans-serif;
    background: #727272;
    text-align: center;
}

/* ✅ تحسين الهيدر بشكل عصري */
header {
    background-color: #ccff00;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

header:hover {
    background-color: #6fb3d2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Styling for smaller screens */
@media (max-width: 1024px) {
    header {
        padding: 20px 50px;
    }

    .logo69 {
        font-size: 1.6em;
    }

    nav a {
        padding: 8px 16px;
        font-size: 1em;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product h3 {
        font-size: 1.3em;
    }

    .product p {
        font-size: 1.1em;
    }

    footer {
        padding: 10px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    header {
        padding: 20px 40px;

          
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
position:relative;

    }

    .logo69 {
        font-size: 1.5em;
    }

    nav a {
        padding: 6px 12px;
        font-size: 0.95em;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .product h3 {
        font-size: 1.2em;
    }

    .product p {
        font-size: 1em;
    }

    .buyButton {
        padding: 12px 28px;
    }

    footer {
        padding: 8px;
    }
}

@media (max-width: 600px) {

    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .logo{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .logo69{
        font-size:28px;
        margin:0;
    }

    .menu-toggle{
        display:block;
        font-size:34px;
        cursor:pointer;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:15px;
        width:220px;
        background:#8ec3e6;
        border-radius:12px;
        padding:15px;
    }

    .products{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .product{
        padding:12px;
    }

    .product h3{
        font-size:18px;
    }

    .product p{
        font-size:15px;
    }
}

/* Phones (landscape) */
@media (max-width: 800px) {
    header {
        flex-direction: row;
        padding: 18px 30px;
    }

    .logo69 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }

    nav a {
        padding: 8px 14px;
        font-size: 1em;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product h3 {
        font-size: 1.3em;
    }

    .product p {
        font-size: 1.1em;
    }

    footer {
        padding: 10px;
    }
}

/* Extra small devices (e.g., small phones) */
@media (max-width: 480px) {
    header {
        flex-direction: row;
        padding: 10px 15px;
    }

    .logo69 {
        font-size: 1.3em;
    }

    nav a {
        padding: 6px;
        font-size: 0.9em;
    }

    .products {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .product {
        padding: 10px;
    }

    .product h3 {
        font-size: 1.1em;
    }

    .product p {
        font-size: 0.95em;
    }

    .buyButton {
        padding: 8px 18px;
    }

    footer {
        padding: 5px;
    }
}







:root {
    /* --primary: #275EFE; */
    --primary: #ef4444;
    /* --primary-light: #7699FF; */
    --primary-light: #f87171;
    --dark: #1C212E;
    --grey-dark: #3F4656;
    --grey: #6C7486;
    --grey-light: #CDD9ED;
    --white: #FFF;
    --green: #16BF78;
    --sand: #fbbf24;
    --sand-light: #fbbf24;
  }
  
  .order {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: var(--dark);
    position: relative;
    height: 63px;
    width: 240px;
    padding: 0;
    outline: none;
    cursor: pointer;
    border-radius: 32px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .order span {
    --o: 1;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 19px;
    line-height: 24px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    opacity: var(--o);
    transition: opacity 0.3s ease;
  }
  .order span.default {
    transition-delay: 0.3s;
  }
  .order span.success {
    --offset: 16px;
    --o: 0;
  }
  .order span.success svg {
    width: 12px;
    height: 10px;
    display: inline-block;
    vertical-align: top;
    fill: none;
    margin: 7px 0 0 4px;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: var(--offset);
    transition: stroke-dashoffset 0.3s ease;
  }
  .order:active {
    transform: scale(0.96);
  }
  .order .lines {
    opacity: 0;
    position: absolute;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    width: 6px;
    top: 30px;
    left: 100%;
    box-shadow: 15px 0 0 var(--white), 30px 0 0 var(--white), 45px 0 0 var(--white), 60px 0 0 var(--white), 75px 0 0 var(--white), 90px 0 0 var(--white), 105px 0 0 var(--white), 120px 0 0 var(--white), 135px 0 0 var(--white), 150px 0 0 var(--white), 165px 0 0 var(--white), 180px 0 0 var(--white), 195px 0 0 var(--white), 210px 0 0 var(--white), 225px 0 0 var(--white), 240px 0 0 var(--white), 255px 0 0 var(--white), 270px 0 0 var(--white), 285px 0 0 var(--white), 300px 0 0 var(--white), 315px 0 0 var(--white), 330px 0 0 var(--white);
  }
  .order .back,
  .order .box {
    --start: var(--white);
    --stop: var(--grey-light);
    border-radius: 2px;
    background: linear-gradient(var(--start), var(--stop));
    position: absolute;
  }
  .order .truck {
    width: 60px;
    height: 41px;
    left: 100%;
    z-index: 1;
    top: 11px;
    position: absolute;
    transform: translateX(24px);
  }
  .order .truck:before, .order .truck:after {
    --r: -90deg;
    content: "";
    height: 2px;
    width: 20px;
    right: 58px;
    position: absolute;
    display: block;
    background: var(--white);
    border-radius: 1px;
    transform-origin: 100% 50%;
    transform: rotate(var(--r));
  }
  .order .truck:before {
    top: 4px;
  }
  .order .truck:after {
    --r: 90deg;
    bottom: 4px;
  }
  .order .truck .back {
    left: 0;
    top: 0;
    width: 60px;
    height: 41px;
    z-index: 1;
  }
  .order .truck .front {
    overflow: hidden;
    position: absolute;
    border-radius: 2px 9px 9px 2px;
    width: 26px;
    height: 41px;
    left: 60px;
  }
  .order .truck .front:before, .order .truck .front:after {
    content: "";
    position: absolute;
    display: block;
  }
  .order .truck .front:before {
    height: 13px;
    width: 2px;
    left: 0;
    top: 14px;
    background: linear-gradient(var(--grey), var(--grey-dark));
  }
  .order .truck .front:after {
    border-radius: 2px 9px 9px 2px;
    background: var(--primary);
    width: 24px;
    height: 41px;
    right: 0;
  }
  .order .truck .front .window {
    overflow: hidden;
    border-radius: 2px 8px 8px 2px;
    background: var(--primary-light);
    transform: perspective(4px) rotateY(3deg);
    width: 22px;
    height: 41px;
    position: absolute;
    left: 2px;
    top: 0;
    z-index: 1;
    transform-origin: 0 50%;
  }
  .order .truck .front .window:before, .order .truck .front .window:after {
    content: "";
    position: absolute;
    right: 0;
  }
  .order .truck .front .window:before {
    top: 0;
    bottom: 0;
    width: 14px;
    background: var(--dark);
  }
  .order .truck .front .window:after {
    width: 14px;
    top: 7px;
    height: 4px;
    position: absolute;
    background: rgba(255, 255, 255, 0.14);
    transform: skewY(14deg);
    box-shadow: 0 7px 0 rgba(255, 255, 255, 0.14);
  }
  .order .truck .light {
    width: 3px;
    height: 8px;
    left: 83px;
    transform-origin: 100% 50%;
    position: absolute;
    border-radius: 2px;
    transform: scaleX(0.8);
    background: #f0dc5f;
  }
  .order .truck .light:before {
    content: "";
    height: 4px;
    width: 7px;
    opacity: 0;
    transform: perspective(2px) rotateY(-15deg) scaleX(0.94);
    position: absolute;
    transform-origin: 0 50%;
    left: 3px;
    top: 50%;
    margin-top: -2px;
    background: linear-gradient(90deg, #f0dc5f, rgba(240, 220, 95, 0.7), rgba(240, 220, 95, 0));
  }
  .order .truck .light.top {
    top: 4px;
  }
  .order .truck .light.bottom {
    bottom: 4px;
  }
  .order .box {
    --start: var(--sand-light);
    --stop: var(--sand);
    width: 21px;
    height: 21px;
    right: 100%;
    top: 21px;
  }
  .order .box:before, .order .box:after {
    content: "";
    top: 10px;
    position: absolute;
    left: 0;
    right: 0;
  }
  .order .box:before {
    height: 3px;
    margin-top: -1px;
    background: rgba(0, 0, 0, 0.1);
  }
  .order .box:after {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
  }
  .order.animate .default {
    --o: 0;
    transition-delay: 0s;
  }
  .order.animate .success {
    --offset: 0;
    --o: 1;
    transition-delay: 7s;
  }
  .order.animate .success svg {
    transition-delay: 7.3s;
  }
  .order.animate .truck {
    -webkit-animation: truck 10s ease forwards;
            animation: truck 10s ease forwards;
  }
  .order.animate .truck:before {
    -webkit-animation: door1 2.4s ease forwards 0.3s;
            animation: door1 2.4s ease forwards 0.3s;
  }
  .order.animate .truck:after {
    -webkit-animation: door2 2.4s ease forwards 0.6s;
            animation: door2 2.4s ease forwards 0.6s;
  }
  .order.animate .truck .light:before, .order.animate .truck .light:after {
    -webkit-animation: light 10s ease forwards;
            animation: light 10s ease forwards;
  }
  .order.animate .box {
    -webkit-animation: box 10s ease forwards;
            animation: box 10s ease forwards;
  }
  .order.animate .lines {
    -webkit-animation: lines 10s ease forwards;
            animation: lines 10s ease forwards;
  }
  
  @-webkit-keyframes truck {
    10%, 30% {
      transform: translateX(-164px);
    }
    40% {
      transform: translateX(-104px);
    }
    60% {
      transform: translateX(-224px);
    }
    75%, 100% {
      transform: translateX(24px);
    }
  }
  
  @keyframes truck {
    10%, 30% {
      transform: translateX(-164px);
    }
    40% {
      transform: translateX(-104px);
    }
    60% {
      transform: translateX(-224px);
    }
    75%, 100% {
      transform: translateX(24px);
    }
  }
  @-webkit-keyframes lines {
    0%, 30% {
      opacity: 0;
      transform: scaleY(0.7) translateX(0);
    }
    35%, 65% {
      opacity: 1;
    }
    70% {
      opacity: 0;
    }
    100% {
      transform: scaleY(0.7) translateX(-400px);
    }
  }
  @keyframes lines {
    0%, 30% {
      opacity: 0;
      transform: scaleY(0.7) translateX(0);
    }
    35%, 65% {
      opacity: 1;
    }
    70% {
      opacity: 0;
    }
    100% {
      transform: scaleY(0.7) translateX(-400px);
    }
  }
  @-webkit-keyframes light {
    0%, 30% {
      opacity: 0;
      transform: perspective(2px) rotateY(-15deg) scaleX(0.88);
    }
    40%, 100% {
      opacity: 1;
      transform: perspective(2px) rotateY(-15deg) scaleX(0.94);
    }
  }
  @keyframes light {
    0%, 30% {
      opacity: 0;
      transform: perspective(2px) rotateY(-15deg) scaleX(0.88);
    }
    40%, 100% {
      opacity: 1;
      transform: perspective(2px) rotateY(-15deg) scaleX(0.94);
    }
  }
  @-webkit-keyframes door1 {
    30%, 50% {
      transform: rotate(32deg);
    }
  }
  @keyframes door1 {
    30%, 50% {
      transform: rotate(32deg);
    }
  }
  @-webkit-keyframes door2 {
    30%, 50% {
      transform: rotate(-32deg);
    }
  }
  @keyframes door2 {
    30%, 50% {
      transform: rotate(-32deg);
    }
  }
  @-webkit-keyframes box {
    8%, 10% {
      transform: translateX(40px);
      opacity: 1;
    }
    25% {
      transform: translateX(112px);
      opacity: 1;
    }
    26% {
      transform: translateX(112px);
      opacity: 0;
    }
    27%, 100% {
      transform: translateX(0px);
      opacity: 0;
    }
  }
  @keyframes box {
    8%, 10% {
      transform: translateX(40px);
      opacity: 1;
    }
    25% {
      transform: translateX(112px);
      opacity: 1;
    }
    26% {
      transform: translateX(112px);
      opacity: 0;
    }
    27%, 100% {
      transform: translateX(0px);
      opacity: 0;
    }
  }
  html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  }
  
  * {
    box-sizing: inherit;
  }
  *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    min-height: 100vh;
    font-family: Roboto, Arial;
    
    justify-content: center;
    align-items: center;
    background: white;
  }
  body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
  }
  body .dribbble img {
    display: block;
    height: 28px;
  }


  @media screen and (max-width: 480px) {
    /* Mobile devices */
    .order {
        width: 180px;
        height: 50px;
        font-size: 14px;
    }
    .order span {
        font-size: 14px;
        top: 15px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    /* Tablets */
    .order {
        width: 200px;
        height: 55px;
    }
    .order span {
        font-size: 15px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Small laptops */
    .order {
        width: 220px;
        height: 60px;
    }
    .order span {
        font-size: 16px;
    }
}

@media screen and (min-width: 1025px) {
    /* Desktops and large screens */
    .order {
        width: 240px;
        height: 63px;
    }
    .order span {
        font-size: 16px;
    }
}
@media (max-width: 768px) {

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        flex-wrap: nowrap;
    }

    .logo69 {
        font-size: 28px;
    }

    header img {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
    }
}










/* Tablet */
@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(2, 1fr); /* 2 منتجات */
    }

    header {
        padding: 20px 50px;
    }
}

/* Phone */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr); /* 2 منتجات */
    }

    header {
        flex-direction: row;
        padding: 15px;
        gap: 10px;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .products {
        grid-template-columns: repeat(2, 1fr); /* يبقى 2 */
    }

    nav a {
        padding: 8px 12px;
        font-size: 14px;
    }
}



