body {
    background-color: #f8f8f8;
    color: #333;
    font-family: "Poppins", sans-serif;
}
   * {
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}
        .header-symbols,.header-logo,.footer-symbol {
    height: 33px;
    margin-right: 20px;
     transition: all 0.3s ease;
}
.header-symbols:hover,.footer-symbol:hover{
     transform: scale(1.15);
}
.header-logo:hover{
    transform: scale(1.05);
}
.header-symbols-text{
    margin-right: 10px;
    transition: all 0.3s ease;
}
.header-symbols-text:hover{
    color: green;
}
#header-ul-social {
    display: flex;
    list-style: none;
}
#header-ul-buttons {
    display: flex;
    list-style: none;
}
.header-logo{
    height: 80px;
}
#header {
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
#header-socialmedia{
    margin-top:25px ;
}
#header-buttons{
    margin-top:25px ;
}
.header-symbols-text{
    font-size: 20px;
  font-weight: 500;
  color: black;
}
.sidebar-toggle {
    background-color:#ddd;
    color:black;
    border: 2px solid black;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.25rem;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 20px;
}
.toogle-head{
    display: inline;
}
.toogle-header{
/*    margin-left: 500px;*/
    font-size: 40px;
    text-decoration: underline;
    text-decoration-color: green;
}

.container {
    display: flex;
}

.sidebar {
    width: 0;
    overflow-x: hidden;
    transition: width 0.3s ease;
    background-color: #fff;
/*    border-right: 1px solid #ddd;*/
/*    margin-left: 20px;*/
    transition: 0.5s ease;
}

.sidebar.active {
    width: 200px;
}

.sidebar .h2-cata {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    margin-left: 20px;
}

.sidebar .ul-cata {
    list-style-type: none;
    padding: 0;
}

.sidebar .ul-cata li {
    margin-bottom: 0.5rem;
    margin-left: 20px;
}

.sidebar .ul-cata li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

.sidebar .ul-cata li a:hover {
    text-decoration: underline;
}

.main-content {
    flex: 1;
    padding: 2rem;
    transition: margin-left 0.3s ease;
}

.main-content.active {
    margin-left: 200px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
}

.product-card img {
    max-width: 100px;
    margin-left: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-card .h2-cata {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.product-card p {
    color: #333;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.product-card button {
    background-color:green;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-card button:hover {
        background-color: darkgreen;
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 18px 0px;
}