 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');

 body {
     margin: 0;
     padding: 0;
     font-family: 'Poppins', sans-serif;
     background-color: var(--white);
 }

 :root {
     --menu-bg: rgba(255, 255, 255, 0.758);
     --white: white;
     --black: black;
     --accent: #ff4081;
     --collection-bg: #f9f9f9;
     --text-dim: #555;
     --accent-dark: #e73370;
     --about-text: #333;
     --gold-about: #b4975a;
     --linear-gradient: #8b6c3b;
     --linear-gradient1: #b4975a;
     --testimonial-bg: #0F172B;
     --testimonial-p: #8A9AB2;
     --primary-color: #6a5af9;
     --blog-bg: #faf9f6;
     --footer-p: #ccc;
     --tab-btn: #aaa;
     --footer-hover: #ff4b2b;
     --secondary-color: #f72585;
     --text-color: #333;
     --container-bg: #ffffff;
     --border-color: #e0e0e0;
     --error-color: #d90429;
 }

 html.dark-mode {
     --menu-bg: rgba(24, 24, 27, 0.8);
     --white: #18181b;
     --black: #ffffff;
     --accent: #ff7faa;
     --collection-bg: #1f1f22;
     --text-dim: #9E9E9E;
     --accent-dark: #ff99bb;
     --about-text: #E0E0E0;
     --gold-about: #d4b26b;
     --linear-gradient: #a18a5a;
     --linear-gradient1: #d4b26b;
     --testimonial-bg: #2a3858;
     --testimonial-p: #a6b6d1;
     --primary-color: #9b8eff;
     --blog-bg: #1c1c1f;
     --footer-p: #ccc;
     --tab-btn: #777;
     --footer-hover: #ff7b5a;
     --secondary-color: #ff63b1;
     --text-color: #E0E0E0;
     --container-bg: #18181b;
     --border-color: rgba(255, 255, 255, 0.1);
     --error-color: #ef5350;
 }



 .header-cls {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 6px 0px;
     background-color: var(--white);
     position: fixed;
     width: 100%;
     z-index: 1;
     margin-right: 20px;
 }

 .logo img {
     width: 150px;
     padding: 16px;
 }

 /* .header-cls h1 {
     color: var(--white);
     font-weight: bold;
     font-family: 'Playfair Display', serif;
     font-size: 24px;
     letter-spacing: 2px;
     margin-left: 15px;
     cursor: pointer;
 }
  */

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

 .menu-items a {
     color: var(--black);
     text-decoration: none;
     padding: 10px;
     letter-spacing: 1px;
     font-size: 16px;
     position: relative;
     margin-right: 30px;
 }

 .menu-items a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 5px;
     width: 0%;
     height: 2px;
     background: var(--accent);
     transition: width 0.3s ease;
 }

 .menu-items a:hover::after {
     width: 100%;
 }

 .dark-btn {
     background-color: #00000000;
     border-color: #00000000;
     color: var(--black);
     cursor: pointer;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .dark-btn:hover {
     transform: translateY(-3px);
     color: var(--accent);
 }

 .menu-items a:hover {
     color: var(--accent);
 }

 .btn-close {
     display: none;
 }

 .hamburger {
     display: none;
 }


 .btn:hover {
     transform: scale(1.1);
 }

 .theme-toggle {
     background: var(--black);
     color: var(--white);
     border: none;
     padding: 6px 12px;
     border-radius: 6px;
     cursor: pointer;
     transition: transform 0.3s ease, background 0.3s ease;
     margin-right: 10px;
 }

 .theme-toggle i {
     color: var(--white);
 }

 /* body.dark .theme-toggle {
     background: #ddd;
     color: black;
 } */

 .banner {
     /* position: relative; */
     min-height: 100vh;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .banner-background {
     position: absolute;
     width: 100%;
     height: 100vh;
     z-index: -1;
     filter: brightness(60%);
     overflow: hidden;

 }

 .bg-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-size: cover;
     background-position: center;
     animation: zoomFade 12s infinite ease-in-out;
     opacity: 0;
     transform: scale(1);
 }

 .image1 {
     background-image: url('./assets/hero-bg1.jpg');
     animation-delay: 0s;

 }

 .image3 {
     background-image: url('./assets/hero-bg2.jpg');
     animation-delay: 6s;

 }

 /* .image1,
.image3 {
    animation: zoomFade 6s ease-in-out infinite;  
} */

 @keyframes zoomFade {
     0% {
         opacity: 0;
         transform: scale(1);
     }

     10% {
         opacity: 1;
         transform: scale(1.05);
     }

     50% {
         opacity: 1;
         transform: scale(1.1);
     }

     90% {
         opacity: 0;
         transform: scale(1.15);
     }

     100% {
         opacity: 0;
         transform: scale(1.2);
     }
 }
@media (max-width:768px) {
    .image1{
        background-image: url('./assets/hero-bg1-700px.png');
    }
}
@media (max-width:478px) {
     .image1 {
     background-image: url('./assets/hero-bg1-mob.jpg');
 
 }

 .image3 {
     background-image: url('./assets/hero-bg2-mob.jpg');
 
 }
}

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.4);
 }

 .hero-content {
     position: relative;
     color: white;
     text-align: center;
     padding: 20px;
     line-height: 50px;

 }

 .hero-content h2 {
     font-size: 3rem;
     margin-bottom: 10px;
 }

 .hero-content h3 {
     font-size: 1.5rem;
     font-weight: 400;
     margin-bottom: 15px;
 }

 .hero-content p {
     font-size: 1rem;
     max-width: 500px;
     margin: auto;
     margin-bottom: 20px;
 }

 .hero-content a {
     text-decoration: none;
     background: var(--accent);
     color: white;
     padding: 10px 25px;
     border-radius: 25px;
     font-weight: 500;
     letter-spacing: 1px;
     transition: background 0.3s ease;
 }

 .hero-content a:hover {
     background: var(--accent-dark);
 }

 .collections {
     /* margin-top: 3%; */
     padding: 50px 20px;
     text-align: center;
     background: var(--white);
 }

 .collections h2 {
     font-size: 36px;
     margin-bottom: 60px;
     color: var(--black);
 }

 .collection-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 20px;
     max-width: 1100px;
     margin: auto;
     /* margin-top: 5%; */
 }

 .collection-card {
     background: var(--white);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .collection-card:hover {
     transform: translateY(-5px);
 }

 .collection-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .collection-card h3 {
     font-size: 1.4rem;
     margin: 15px 0 10px;
     color: var(--black);
 }

 .collection-card p {
     padding: 0 15px;
     color: var(--text-dim);
     font-size: 16px;
     min-height: 50px;
 }

 .collections .btn {
     display: inline-block;
     margin: 15px 0 20px;
     padding: 10px 20px;
     background: var(--accent);
     color: white;
     text-decoration: none;
     border-radius: 25px;
     transition: all 0.5s ease;
 }

 .collections .btn:hover {
     background: var(--accent-dark);
 }

 .about-section {
     padding: 80px 5%;
     background-color: var(--white);
     font-family: 'Poppins', sans-serif;
 }

 .about-container {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 40px;
 }

 .about-image img {
     width: 100%;
     max-width: 450px;
     border-radius: 15px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 .about-text {
     flex: 1;
     color: var(--about-text);
 }

 .about-text h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--black);
 }

 .about-text h2 span {
     color: #b4975a;
 }

 .about-text p {
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 15px;
     color: var(--text-dim);
 }

 .about-btn {
     display: inline-block;
     padding: 12px 28px;
     background: linear-gradient(135deg, var(--linear-gradient1), var(--linear-gradient));
     color: white;
     text-decoration: none;
     font-weight: 600;
     border-radius: 30px;
     transition: all 0.3s ease;
 }

 .about-btn:hover {
     background: linear-gradient(135deg, var(--linear-gradient), var(--linear-gradient1));
     transform: scale(1.05);
 }

 .testimonials {
     text-align: center;
     padding: 50px 10px;
     background: var(--white);
     background-color: #0F172B;
     color: var(--white);

 }

 .testimonials h2 {
     font-size: 36px;
     margin-bottom: 30px;
     color: white;
 }

 .testimonial-container {
     position: relative;
     max-width: 600px;
     margin: auto;
 }

 .testimonial {
     display: none;
     animation: fade 1s ease-in-out;
 }

 .testimonial.active {
     display: block;
 }

 .testimonials p {
     font-size: 18px;
     color: var(--testimonial-p);
     font-style: italic;
 }

 .testimonial h4 {
     margin-top: 10px;
     color: var(--white);
     font-weight: bold;
 }

 .testimonial-image {
     width: 100px;
     height: 100px;
     border-radius: 80%;
     margin-bottom: 15px;
     border: 3px solid #ccc;
 }


 @keyframes fade {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .dots {
     margin-top: 20px;
 }

 .dot {
     height: 10px;
     width: 10px;
     margin: 0 5px;
     background-color: #bbb;
     border-radius: 50%;
     display: inline-block;
     transition: background 0.3s;
     cursor: pointer;
 }

 .dot.active {
     background-color: #fb5f0c;
 }

 .blog-section {
     padding: 50px 10%;
     background: var(--blog-bg);
     text-align: center;
     /* margin-top: 10%; */
 }

 .blog-title {
     font-size: 2.5rem;
     font-weight: bold;
     margin-bottom: 40px;
     color: var(--about-text);
     letter-spacing: 1px;
 }

 .blog-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
 }

 .blog-card {
     background: var(--white);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }

 .blog-image img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .blog-card:hover .blog-image img {
     transform: scale(1.05);
 }

 .blog-content {
     padding: 20px;
     text-align: left;
 }

 .blog-content h3 {
     font-size: 1.3rem;
     margin-bottom: 10px;
     color: var(--black);
 }

 .blog-content p {
     font-size: 0.95rem;
     color: var(--black);
     line-height: 1.5;
 }

 .read-more {
     display: inline-block;
     margin-top: 15px;
     color: white;
     background: linear-gradient(45deg, #d6336c, #f06595);
     padding: 10px 18px;
     border-radius: 25px;
     text-decoration: none;
     font-size: 0.9rem;
     transition: background 0.3s ease;
 }

 .read-more:hover {
     background: linear-gradient(45deg, #b82e5e, #e8598b);
 }

 .contact-section {
     /* margin-top: 15%; */
     padding: 60px 20px;
     background: var(--white);
     font-family: 'Poppins', sans-serif;
 }

 .contact-container {
     display: flex;
     flex-wrap: wrap;
     background: var(--white);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     border-radius: 15px;
     overflow: hidden;
 }

 .contact-image {
     flex: 1;
     background: url('./assets/ayo-ogunseinde-UqT55tGBqzI-unsplash.jpg') center/cover no-repeat;
     min-height: 400px;
 }

 .contact-form {
     flex: 1;
     padding: 40px;
 }

 .contact-form h2 {
     font-size: 28px;
     margin-bottom: 10px;
     color: var(--text-dim);
 }

 .contact-form p {
     font-size: 14px;
     color: var(--text-dim);
     margin-bottom: 20px;
 }

 .contact-form form {
     display: flex;
     flex-direction: column;
 }

 .contact-form input,
 .contact-form textarea {
     padding: 12px;
     margin-bottom: 15px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 14px;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     outline: none;
     border-color: #ff4f81;
     box-shadow: 0 0 5px rgba(255, 79, 129, 0.4);
 }

 .contact-form button {
     text-decoration: none;
     background: #ff4f81;
     color: white;
     border: none;
     padding: 12px;
     font-size: 15px;
     border-radius: 8px;
     cursor: pointer;
     transition: 0.3s ease;
     width: 20%;
     text-align: center;
 }

 .contact-form a:hover {
     background: #e94474;
 }

 .contact-info {
     margin-top: 20px;
     font-size: 14px;
     color: var(--text-dim);
 }

 .contact-info p {
     margin-bottom: 8px;
 }

 .footer {
     background: black;
     color: var(--white);
     padding: 50px 20px 20px;
     font-family: 'Poppins', sans-serif;
     /* margin-top: 10%; */
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: auto;
 }

 .footer h2,
 .footer h3 {
     margin-bottom: 15px;
     font-weight: 600;
     color: white;
 }

 .footer p {
     line-height: 1.6;
     font-size: 14px;
     color: var(--footer-p);
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links ul li {
     margin-bottom: 10px;
 }

 .footer-links ul li a {
     text-decoration: none;
     color: var(--footer-p);
     transition: color 0.3s;
 }

 .footer-links ul li a:hover {
     color: var(--footer-hover);
 }

 .footer-social .social-icons {
     display: flex;
     /* gap: 10px; */
 }

 .footer-social .social-icons img {
     width: 28px;
     height: 28px;
     filter: brightness(0) invert(1);
     transition: transform 0.3s;
 }

 .footer-social .social-icons img:hover {
     transform: scale(1.2);
 }

 .footer-bottom {
     text-align: center;
     margin-top: 30px;
     padding-top: 15px;
     border-top: 1px solid #333;
     font-size: 13px;
     color: var(--text-dim);
 }

 .social-icons {
     width: 50px;
     height: 50px;
 }




 @media(max-width: 900px) {
     .contact-container {
         flex-direction: column;
     }

     .contact-image {
         height: 300px;
     }
 }

 @media(max-width:768px) {
     .menu-items {
         flex-direction: column;
         background: black;
         position: fixed;
         top: 0;
         right: -350px;
         width: 250px;
         height: 100%;
         padding: 60px 20px;
         transition: right 0.3s ease;
         z-index: 999;

     }

     .menu-items a {
         color: white;

     }

     .menu-items button {
         color: rgb(255, 255, 255);
     }

     .btn-close {
         display: block;
         color: red;
     }


     .hamburger {
         display: block;
         margin-right: 30px;
         cursor: pointer;
         color: var(--black);

     }

     .menu-items.show {
         right: 0;
         display: flex;
         flex-direction: column;
         flex-wrap: wrap;
         justify-content: flex-start;
         align-content: flex-start;
     }

     .hamburger:hover {
         color: #b82e5e;
     }

     .home-select {
         left: 70% !important;
     }

     .contact-form button {
         width: 30%;
     }
 }

 @media(max-width:768px) {
     .menu-items a {
         font-size: 16px;
     }
 }





 .popup-trigger-btn {
     font-size: 16px;
     color: rgb(0, 0, 0);
     border: none;
     cursor: pointer;
     background: none;
     transition: all 0.3s ease;
 }

 .popup-trigger-btn ::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 5px;
     width: 0%;
     height: 2px;
     background: var(--white);
     transition: width 0.3s ease;
 }

 .popup-trigger-btn:hover::after {
     width: 100%;
 }



 .popup-trigger-btn:hover {
     transform: translateY(-3px);
     color: var(--accent);

 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     /* display: flex; */
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.4s ease;
     z-index: 100;
     display: flex;
 }

 .modal-overlay.active {
     opacity: 1;
     pointer-events: auto;
 }

 .container {
     width: 100%;
     max-width: 420px;
     background-color: var(--container-bg);
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     transform: translateY(20px) scale(0.95);
     transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
     position: relative;
     /* display: none; */
 }

 .modal-overlay.active .container {
     transform: translateY(0) scale(1);
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     background: none;
     border: none;
     font-size: 2rem;
     color: var(--footer-p);
     cursor: pointer;
     z-index: 10;
     transition: color 0.2s, transform 0.2s;
 }

 .close-btn:hover {
     color: var(--about-text);
     transform: rotate(90deg);
 }

 .tabs {
     position: relative;
     display: flex;
     background-color: var(--collection-bg);
 }

 .tab-btn {
     width: 50%;
     padding: 18px;
     border: none;
     background-color: transparent;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     color: var(--tab-btn);
     transition: color 0.3s ease;
     z-index: 2;
 }

 .tab-btn.active {
     color: var(--primary-color);
 }

 .tab-indicator {
     position: absolute;
     height: 4px;
     width: 50%;
     bottom: 0;
     left: 0;
     background-color: var(--primary-color);
     border-radius: 4px;
     transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
 }

 .form-wrapper {
     overflow: hidden;
 }

 .form-slider {
     display: flex;
     width: 200%;
     transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
 }

 .container.signup-active .form-slider {
     transform: translateX(-50%);
 }

 .form-section {
     width: 50%;
     padding: 2rem 2.5rem;
 }

 .form-section h3 {
     font-size: 2rem;
     text-align: center;
     margin-bottom: 2rem;
     color: var(--text-color);
     font-weight: 700;
 }

 .input-group {
     position: relative;
     margin-bottom: 1.5rem;
 }

 .input-group i {
     position: absolute;
     left: 18px;
     top: 16px;
     color: #ccc;
     transition: color 0.3s, transform 0.3s;
 }

 .input-group input {
     width: 85%;
     padding: 14px 14px 14px 50px;
     border: 1px solid #e0e0e0;
     border-radius: 10px;
     font-size: 1rem;
     font-family: 'Poppins', sans-serif;
     background-color: #faf9f6;
     transition: all 0.3s;
 }

 .input-group input:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(106, 90, 249, 0.2);
 }

 .input-group input:focus+i {
     color: var(--primary-color);
     transform: scale(1.1);
 }

 .error-message {
     color: #d90429;
     font-size: 0.8rem;
     padding-left: 5px;
     display: none;
     margin-top: 4px;
 }

 .input-group.error input {
     border-color: #d90429;
     animation: shake 0.4s;
 }

 .input-group.error .error-message {
     display: block;
 }

 .form-section a.forgot-password {
     display: block;
     text-align: right;
     color: #6a5af9;
     text-decoration: none;
     font-size: 0.9rem;
     margin-top: -1rem;
     margin-bottom: 1.5rem;
 }

 .form-section button[type="submit"] {
     width: 100%;
     padding: 14px;
     border: none;
     border-radius: 10px;
     color: white;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
 }

 #login-form button {
     background: linear-gradient(90deg, #8e2de2, #4a00e0);
 }

 #signup-form button {
     background: linear-gradient(90deg, #f953c6, #b91d73);
 }

 .form-section button[type="submit"]:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .form-section button[type="submit"]:active {
     transform: translateY(-1px) scale(0.98);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .social-login {
     text-align: center;
     margin-top: 2rem;
 }

 .social-login p {
     color: var(--tab-btn);
     margin-bottom: 1rem;
     position: relative;
 }

 .social-login p::before,
 .social-login p::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 30%;
     height: 1px;
     background-color: var(--border-color);
 }

 .social-login p::before {
     left: 0;
 }

 .social-login p::after {
     right: 0;
 }

 .social-icons {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-left: 40%;

 }

 .social-icons img {
     width: 40px;
     height: 40px;
     cursor: pointer;
     margin-left: 30%;
     transition: transform 0.2s;
 }

 .social-icons img:hover {
     transform: scale(1.15) rotate(10deg);
 }

 @keyframes shake {

     0%,
     100% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-5px);
     }

     50% {
         transform: translateX(5px);
     }

     75% {
         transform: translateX(-5px);
     }
 }

 .menu-item {
     position: relative;
 }

 .home-select {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--white);
     min-width: 170px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     color: black;
     padding: 20px;
     z-index: 1000;
 }

 .home-select a {
     color: var(--black);
     font-size: 16px !important;
 }

 .menu-item:hover .home-select {
     display: block;
 }

 .user-logo {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     /* background-color: var(--white); */
     background-color: #4a00e0;
     color: white;
     font-weight: bold;
     font-size: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     position: relative;
     text-transform: uppercase;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.103);
     margin-right: 10px;
 }

 .user-tooltip {
     display: none;
     position: absolute;
     top: 55px;
     right: 20px;
     background: #222;
     color: #fff;
     padding: 10px 15px;
     border-radius: 8px;
     font-size: 14px;
     white-space: nowrap;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     z-index: 10;
 }

 #user-icon:hover .user-tooltip {
     display: block;
 }

 #logout-btn {
     margin-top: 8px;
     background: #ff4b2b;
     color: #fff;
     border: none;
     padding: 6px 12px;
     border-radius: 5px;
     cursor: pointer;
     font-size: 13px;
     font-weight: bold;
     transition: background 0.3s ease;
 }

 #logout-btn:hover {
     background: #ff1a1a;
 }

 #btn-form:disabled {
     background: #ccc;
     cursor: not-allowed;
 }

 .toast {
     visibility: hidden;
     min-width: 250px;
     margin-left: -125px;
     background: #4CAF50;
     color: white;
     text-align: center;
     border-radius: 6px;
     padding: 12px;
     position: fixed;
     z-index: 1500;
     left: 50%;
     bottom: 30px;
     font-size: 16px;
     opacity: 0;
     transition: opacity 0.5s, bottom 0.5s;
 }

 .toast.show {
     visibility: visible;
     opacity: 1;
     bottom: 50px;
 }