.footer {
    background-color: #0c0c14;
    color: white;
    padding: 60px 20px 30px;
    font-family: sans-serif;
    margin: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-family: Roboto Condensed;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

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

.footer-col li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.logo-area .logo {
    width: 160px;
    margin-bottom: 20px;
}

.logo-area p {
    font-family: Roboto Condensed;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: 0%;
margin-bottom: 20px;
}

.social-title {
    margin-bottom: 5px;
    font-family: Roboto Condensed;
font-weight: 600;
font-size: 20px;
line-height: 120%;
letter-spacing: 0%;
text-transform: uppercase;

}

.social-icons {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b28;
    border-radius: 16px;
    width: 48px;
    height: 48px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}


.store-button {
    background: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 12px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0px;
    }
    .social-title{
        margin-bottom: 10px;
    }

    .footer-col {
        flex: auto;
        align-items: center;
        text-align: center;
    }
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
	margin-bottom: 10px;
    }

    .store-button {
        margin: 20px auto 0;
    }

    .footer-bottom {
        text-align: center;
    }
}

.footer-col ul li a {
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
}

.footer-col ul li a:hover {
  color: #ff69b4; 
}

.store-button {
  transition: all 0.3s ease; 
}
.store-button:hover{
color: #fff;
background:#ff69b4;
}
