body {
    background-color: #FFF9F3;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 1; /* Чтобы содержимое header было поверх затемнения */
    /* bordeR: 2px solid red; */
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* заменено с 0.5 на 0.2 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 10;
}

.size {
    max-width: 1200px;
    margin: 0 auto;
    /* border: 2px solid red; */
}

/* PopUP */
#popUP {
  background-color: #FFFCFA;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 50%;
  left: 50%;
    transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 10000 !important;
  text-align: center;
  /* width: 90%;          */
  max-width: 839px;    
  height: auto;
  max-height: max-content;    
  /* overflow-y: auto;     */
  border-radius: 40px;
  padding: 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;

    .ModalLogo {
        width: 140px; 
        height: 53px;
        margin-top: 70px;
    }

    h2 {
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: bottom;
        color: #232323;
        margin-top: 12px;
    }

    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #999999;
        margin-top: 12px;
    }

    .switchButtons {
        width: 361px;
        height: 46px;
        border-radius: 100px;
        padding: 2px;
        background-color: #F5F5F5;
        display: flex;
        flex-direction: row;
        margin-top: 12px;

        button {
            width: 179px;
            height: 42px;
            border-radius: 100px;
            padding-top: 3px;
            padding-right: 10px;
            padding-bottom: 3px;
            padding-left: 10px;
            color: #616161;
            background-color: #F5F5F5;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            text-align: center;
            border: none;
            cursor: pointer;

        }

        .active {
            background-color: #FFFFFF;
            border: 0.5px solid #0000000A;
            box-shadow: 0px 3px 1px 0px #0000000A;
            color: #000000;
        }
    }
    form {
        display: flex;
        flex-direction: column;
        height: max-content;
        /* bordeR: 2px solid red; */

        label {
            color: #1A1919;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            letter-spacing: 0%;
            text-align: start;
            padding-top: 8px;
            padding-right: 16px;
            padding-left: 16px;
        }
        div {
            width: 629px;
            height: 48px;
            border-radius: 99px;
            padding-right: 16px;
            padding-bottom: 8px;
            padding-left: 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            background-color: #FFF9F3;

            img {
                width: 17px;
                height: 15px;

            }
        }
        input {
            width: 629px;
            height: 48px;
            border: none;
            outline: none;
            background-color: #FFF9F3;
        }

        input[type='submit'] {
            width: 90%;
            margin-right: auto;
            margin-left: auto;
            height: 48px;
            border-radius: 100px;
            padding-top: 12px;
            padding-right: 10px;
            padding-bottom: 12px;
            padding-left: 10px;
            font-family: Mluvka;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            color: #FFFFFF;
            background-color: #F07E26;
            margin-top: 25px;
        }
    }

    span {
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #F07E26;
        text-align: start;
        padding-right: 16px;
        padding-bottom: 8px;
        padding-left: 16px;
    }

    .line {
        margin-top: 37px;
        width: 180px;
        height: 2px;
        background-color: #B5B5B5;
        border: none;
    }
    
    .linesOr {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 37px;
    }
    
    .linesOr div {
        margin: 0 10px;
    }

    .googleButton {
        width: 629px;
        height: 40px;
        border-radius: 12px;
        gap: 12px;
        padding: 12px;
        border: 1px solid #E8DBDB;
        display: flex;
        flex-direction: row;
        margin-top: 12px;
       
        img {
            width: 30px;
            height: 30px;
        }

        button {
            width: 100%;
            border: none;
            background-color: #FFFCFA;
            cursor: pointer;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #000099;
            gap: 12px; 
        }
    }
}
/* Крестик */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
    color:#ff6600;
    transition: 0.6s;
}

.close-btn:hover {
    color:#007A41;
    transition: 0.6s;
}

/* Кнопка */
#modalPage {
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Анимация открытия */
.show-popup {
    opacity: 1 !important;
    visibility: visible !important;
    animation: zoomInUp 0.3s ease-in-out forwards;
}

/* Анимация закрытия */
.hide-popup {
    animation: zoomInDown 0.3s ease-in-out forwards;
}

/* Анимации */
@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to {
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
}

/* Активные классы */
.active-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}


.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
    width: 1120px;
    height: 30px;
    

    border-radius: 100px;
    border-image-source: linear-gradient(270.25deg, rgba(241, 241, 241, 0) 1.6%, rgba(218, 218, 218, 0.4) 100%);
    border-image-slice: 1;

    background: linear-gradient(90.26deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.39) 100%);
    backdrop-filter: blur(20px);

    box-shadow: 0px 0px 60px rgba(204, 204, 204, 0.1);

    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    /* position: fixed;
    z-index: 1000; */



.logoHeaderSize {
    width: 99px;
    height: 38px;

}
.othercontrols {
    display: flex;
    align-items: center;
    gap: 30px;
}

.signIn {
    background: white;
    width: 134px;
    height: 49px;
    border-radius: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #F07E26;
    border: none;
    cursor: pointer;
    transition: 0.6s;

}


.signIn:hover {
    color: white;
    background-color: #007A41;
    transition: 0.6s;
}

a {
    text-decoration: none;
    color: #302F2F;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #F07E26;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}


a img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

a:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px #007A41);
}




}



.page-part {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 30px;


    p, a {

            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #939393;

        span {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #F07E26;
        }

        h5 {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #2B2828;
        }
    }
}


.product-image-info {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* bordeR: 2px solid red; */

    .product-image-box {
        width: 500px;
        height: 350px;
        border-radius: 16px;
        overflow: hidden; 
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 12px;
        padding-right: 12px;
        background-color: white;
    }
    
    .product-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        border-radius: 16px; 

    }

.product-image-box-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;

  h1 {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #272727;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;

    &:hover {
      color: #F07E26;
      transform: translateY(-3px);
    }

    &::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background: #F07E26;
      bottom: -6px;
      left: 0;
      transition: width 0.3s ease;
    }

    &:hover::after {
      width: 100%;
    }
  }

  .put_price_here {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #F07E26;
    animation: pulseColor 2s infinite alternate;
  }

  @keyframes pulseColor {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0.85;
      transform: scale(1.04);
    }
  }

  .put_description_here {
    width: 600px;
    height: 48px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7C7979;
    transition: transform 0.4s ease, color 0.3s ease;

    &:hover {
      transform: translateX(5px);
      color: #3a3a3a;
    }
  }

  form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
  }

  .position-bullets-button {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }

  form button {
    width: 48px;
    height: 48px;
    border-radius: 100px;
    font-size: 30px;
    background-color: #FFFFFF;
    border: none;
    box-shadow: 0 0 0 transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;

    &:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 4px 20px rgba(240, 126, 38, 0.4);
    }

    &:active {
      transform: scale(0.95) rotate(-2deg);
    }
  }

  form input[type="text"] {
    width: 109px;
    height: 48px;
    border-radius: 100px;
    background-color: #FFFFFF;
    border: 2px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    transition: border 0.3s ease, transform 0.3s ease;

    &:focus {
      border-color: #F07E26;
      transform: scale(1.05);
    }
  }

  form input[type="submit"] {
    width: 326px;
    height: 48px;
    border-radius: 100px;
    background: linear-gradient(135deg, #f07e26, #ff974d);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 8px 24px rgba(240, 126, 38, 0.5);
    }

    &:active {
      transform: scale(0.96);
    }
  }
}

    
    .star-text-orange {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        justify-content: flex-start;

        span {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #272727;
        }
    }

    .categories-paragf-add-here {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #272727;

        .add_category_here {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #7C7979;
        }
    }
}

.recommendation_box {
    display: flex;
    flex-direction: column;
    margin-top: 90px;


    h2 {
        font-weight: 600;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0%;
        text-align: center;
        color: #272727;
        margin-bottom: 25px;
    }

    .recommendation_box_cards {
        display: flex;
        flex-direction: row;
        gap: 20px;



        

        .card_recommendation {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 360px;
            height: 304px;
            border: 1px solid #F6F6F6;
            box-shadow: 0px 0px 40px 0px #C0C0C01F;
            border-radius: 12px;
            border-width: 1px;
            padding: 12px;

            .image-circle {
                position: relative;
                width: 100%;
                aspect-ratio: 1 / 1; /* квадратная форма */
                border-radius: 20px;
                overflow: hidden;

                img {
                    width: 19px;
                    height: 17px;
                }
              }
              
              .image_box {
                width: 100%;
                height: 100%;
              }
              
              .image_box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;


              }
              
              .wish_list_circle {
                position: absolute;
                top: 10px;
                right: 10px;
                background-color: white;
                border-radius: 50%;
                padding: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
                width: 32px;
                height: 32px;
              }
              
              .wish_list_circle img {
                width: 25px;
                height: 25px;
              }
              
              .name-weight {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                width: 100%;
    
                h3 {
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 100%;
                    letter-spacing: 0%;
                    color: #201E1E;
                }
    
                span {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 100%;
                    letter-spacing: 0%;
                    color: #959595;
                }
            }
            .price {
                width: 100%;
                text-align: right;
    
                span {
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 100%;
                    letter-spacing: 0%;
                    color: #201E1E;
                }
            }
    
            button {
                width: 336px;
                height: 40px;
                border-radius: 12px;
                padding: 10px;
                border: 1px solid #F07E26;
                background-color: transparent;
                font-weight: 600;
                font-size: 16px;
                line-height: 100%;
                letter-spacing: 0%;
                color: #F07E26;
                cursor: pointer;
            }
        }
    }
}


.footerLogoText {
    .footerLogoSize {
        width: 225px;
        height: 85px;
    
    }
    p {
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0%;
        color: #363434;
        margin-top: 16px;
    }
}

.infoFooter {
    span {
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0%;
        color: #B6B6B6;
    }

    a {
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0%;
        color: #363434;
    }
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
    background-color: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 32px;

    .infoFooter {
        display: flex;
        flex-direction: row;
        gap: 50px;

        .numberMail {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .socialIconsLinks {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
    }

}

.underFooter {
    box-sizing: border-box;
    padding-right: 160px;
    padding-bottom: 10px;
    padding-left: 160px;
    padding-top: 10px;
    background-color: #FFFFFF;
    position: relative;

    span {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: right;
        color: #B5B5B5;
    }

    .line {
        position: absolute; 
        left: 0;
        right: 0;
        top: -2px;
        width: 100%;
        height: 2px;
        background-color: #B5B5B5;
        border: none; 
    }
}


.oneLevelmgText {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.oneLevelmgText a {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #363434;
}

.oneLevelmgText img {
    width: 24px;
    height: 24px;
}

.numberMail a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #363434;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.numberMail a:hover {
    color: #F07E26;
    text-shadow: 0 1px 6px rgba(240, 126, 38, 0.4);
}

.oneLevelmgText a {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #363434;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.oneLevelmgText a:hover {
    color: #F07E26;
    text-shadow: 0 1px 6px rgba(240, 126, 38, 0.4);
}

.oneLevelmgText img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.oneLevelmgText a:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 10px rgba(240, 126, 38, 0.5));
}
@media (max-width: 768px) {
    .navbar {
        max-width: 100% !important;
        border-radius: 0px;
        padding: 0 !important;
        margin: 0 !important;
        top: 0 !important; 
        right: 0 !important;
        padding: 20px !important;
        margin: 10px !important;
        border: none; /* убираем бордер */
        border-image: none;
        background: transparent; /* полностью прозрачный фон */
        backdrop-filter: none; /* убираем размытие */
        box-shadow: none; /* убираем тень */
    }

    .sidebar {
        display: block !important;
    }

    .openbtn {
        display: block !important;
    }

    .overlaytus {
        display: block !important;
    }

    .othercontrols {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .navbar {
        width: 100% !important;
        border-radius: 0;
        padding: 0 !important;
        margin: 0 !important;
        top: 0 !important;
        right: 0 !important;
        border: none;
        border-image: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        margin: 0 auto !important;
        justify-content: space-between;
        backdrop-filter: blur(7.699999809265137px);
        position: fixed;
        padding: 20px !important;
        margin-left: 10px !important;
    }

    .sidebar {
        display: block !important;
    }

    .openbtn {
        display: block !important;
    }

    .overlaytus {
        display: block !important;
    }

    .othercontrols {
        display: none !important;
    }
}



@media (max-width: 480px) {
    .navbar {
        padding: 12px !important;
        margin:0 6px 0 6px !important;
    }
}

@media (max-width: 768px) {
    footer {
        flex-direction: column; /* Меняем направление на вертикальное */
        align-items: flex-start;
        padding-top: 40px;
    }

    .footerLogoText {
        text-align: start !important;
        margin-bottom: 20px;
        padding: 15px;

        p {
            text-align: start;

            br {
                display: none;
            }
        }
    }

    .footerLogoSize {
        width: 180px; 
        height: 70px;

        p {
            font-size: 14px;
            line-height: 22px;
            color: #363434;
            margin-top: 10px;
            text-align: center;
        }
    }



    .infoFooter {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
        margin-top: 20px;
        padding: 20px;
    }

    .socialIconsLinks, .numberMail {
        display: flex;
        flex-direction: column;
        gap: 15px;

        span {
            text-align: start;
        }
    }

    .oneLevelmgText a {
        font-size: 16px;
    }

    .underFooter {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;

        span {
            text-align: center;
            font-size: 12px !important;
        }
    }

    .line {
        width: 100%;
        top: 0;
    }

    .size {
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        
        
    }

    .page-part {
        display: flex !important;
        flex-direction: row !important;
        justify-content: start !important;
        align-items: center !important;
        padding: 0 !important;
        padding-bottom: 20px !important;
        gap: 10px !important;
    }

    .product-image-info {
        display: flex;
        flex-direction: column;
        
    }
    
        .product-image-box {
        height: auto !important;
        padding: 0 !important;  
        width: 90% !important;
        margin: 0 auto !important;
    }

        img {

            max-width: 100% !important; 
            height: auto !important;
        }
        .product-image-box-info {
            gap: 20px !important;
            padding: 15px !important;
            box-sizing: border-box !important;

            h1 {
                font-size: 25px !important;
            }
        }

            .put_description_here {
            max-width: 100% !important;
            height: auto !important;
        }

        .mobile-bullets form {
            display: flex !important;
            flex-direction: column !important;
            gap: 15px;
        }

        .position-bullets-button {
            width: 100%;
            justify-content: space-around !important;

            input {
                width: 150px !important;
                height: 48px !important;
            }
        }
            form input[type="submit"] {
            max-width: 100% !important;
        }

        .recommendation_box {
            margin-top: 60px !important;
            max-width: 100% !important;
        }

        .recommendation_box_cards {
            display: flex !important;
            flex-direction: column !important;

        }
        .card_recommendation {
            width: 100% !important;
            height: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            gap: 10px !important;
            box-sizing: border-box;
            padding: 20px !important;

            button {
            max-width: 300px !important;
            margin: 0 !important;
            padding: 0 !important;
        }

            .image_box {
                max-width: 100% !important;
                height: auto !important;
              }
              
              .image_box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;


              }
              /* ATTENTIIIIIOOOOONONONONONONN */
              .image-circle {
                width: 100% !important;
                height: 150px !important;
              }
        }

    }

@media (min-width: 768px) and (max-width: 768px) {
            .card_recommendation {

              /* ATTENTIIIIIOOOOONONONONONONN */
              .image-circle {
                width: 100% !important;
                height: 250px !important;
              }
        }
}

@media (min-width: 1024px) and (max-width: 1024px) {

    .recommendation_box_cards {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
        .card_recommendation {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 260px !important;
            height: 304px;
            border: 1px solid #F6F6F6;
            box-shadow: 0px 0px 40px 0px #C0C0C01F;
            border-radius: 12px;
            border-width: 1px;
            padding: 12px;


            button {
                width: 236px !important;
                height: 40px;
                border-radius: 12px;
                padding: 10px;
                border: 1px solid #F07E26;
                background-color: transparent;
                font-weight: 600;
                font-size: 16px;
                line-height: 100%;
                letter-spacing: 0%;
                color: #F07E26;
                cursor: pointer;
            }
        }
}

/* Toast стили */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #38b000;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: sans-serif;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
