 body{
        margin: 0;
        padding: 0;
    }
    :root{
      --purple-color:#000000;
      --green-color:#FF4C4C;
    }

    /* ------------------ FOOTER RPZ ----------------------------*/
    .footer_rpz {
        margin-top: 20px;
      background-color: var(--purple-color);
      color: white;
      padding: 40px 20px 20px;
      font-family: "Exo 2", sans-serif;
    }

    .footer-top_rpz {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    /* -------- Unique Logo Block -------- */
    .footer-logo_rpz {
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 12px;
    }

    .footer-logo-section_rpz {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .footer-logo-text_rpz {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 800;
      gap: 4px;
      max-width: 350px;
    }
    .footer-logo-text_rpz img{
        width: 100%;
    }
    .footer-logo-bot_rpz {
      color: white;
    }

    .footer-logo-icon_rpz {
      font-size: 1.8rem;
    }

    .footer-logo-shop_rpz {
      color: #B8D445;
    }

    .footer-logo-tagline_rpz {
      text-align: center;
      font-size: 0.85rem;
      font-weight: 600;
      color: white;
      white-space: nowrap;
    }

    /* Navigation */
    .footer-nav-container_rpz {
      display: flex;
      column-gap: 50px;
    }

    .footer-nav_rpz {
      display: flex;
      gap: 15px;
      flex-direction: column;
      font-size: 1rem;
      font-weight: 800;
    }

    .footer-nav_rpz a {
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-nav_rpz a:hover {
      text-decoration: underline;
    }

    /* Social Icons */
    .footer-social_rpz {
      display: flex;
      gap: 35px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .social-icon_rpz {
      width: 50px;
      height: 50px;
      background-color: #fffff8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon_rpz:hover {
      background-color: var(--green-color);
      transform: scale(1.1);
    }

    .social-icon_rpz svg {
      width: 23px;
      height: 23px;
      fill: #333;
      transition: fill 0.3s ease;
    }

    .social-icon_rpz:hover svg {
      fill: white;
    }

    /* Divider */
    .footer-line_rpz {
      margin: 15px auto;
      height: 3px;
      background-color: #FFF;
      width: 50%;
      max-width: 1200px;
    }

    /* Footer Text */
    .footer-text_rpz {
      text-align: center;
      font-size: 0.9rem;
      font-weight: 700;
      color: white;
      margin: 0;
      padding: 10px 0;
    }

    /*--------------------- Responsive ------------------------*/

    @media(max-width:768px){
      .footer-top_rpz {
        flex-direction: column;
        gap: 30px;
      }

      .footer-nav-container_rpz {
        flex-direction: row;
        gap: 25px;
        text-align: center;
      }

      .footer-nav_rpz {
        align-items: center;
      }

      .footer-logo-text_rpz {
        font-size: 1.8rem;
      }

      .footer-logo-tagline_rpz {
        font-size: 0.75rem;
      }
    }

    @media(max-width:500px){
        
      .footer_rpz {
        padding: 30px 15px 15px;
      }

      .footer-logo-text_rpz {
        font-size: 1.5rem;
      }

      .footer-logo-icon_rpz {
        font-size: 1.4rem;
      }

      .footer-logo-tagline_rpz {
        font-size: 0.7rem;
      }

      .footer-nav_rpz {
        font-size: 0.85rem;
        gap: 12px;
      } 

      .footer-nav-container_rpz {
        gap: 20px;
      }

      .social-icon_rpz {
        width: 45px;
        height: 45px;
      }

      .social-icon_rpz svg {
        width: 20px;
        height: 20px;
      }

      .footer-text_rpz {
        font-size: 0.8rem;
      }
    }