body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
}

.navbar {
    z-index: 2;
    position: fixed;
    height: 5vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f4f4f4;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
    justify-content: flex-end;
}

.menu-item {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #007BFF; 
}

.menu-item:hover {
    transform: translateY(-2px); 
}

.loader {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    animation: fade-in-out 1.5s infinite;
    padding-top:10px;
    transform: translate(12%, 5%);
}

.letter {
    animation: bounce 1.5s infinite;
    display: inline-block;
}

.letter:nth-child(odd) {
    animation-delay: 0.1s;
}

.letter:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.Featurestipes{
    display: flex;
    flex-direction: row;
        width: 100%;
        
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px 0;
    list-style: none;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.menu-item:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown li {
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dropdown li:hover {
    background-color: #f4f4f4;
    transform: translateX(5px);
}

.dropdown a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.dropdown a:hover {
    color: #007BFF;
}

.menu-item:hover .dropdown {
    display: block;
}

.menu-left {
    display: flex;
}

.menu-right {
    display: flex;
    align-items: center;
    margin-right: 20px; 
}

.btn {
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #555;
    padding: auto;
}

.cover {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 187, 0);
    height: 100vh;
    overflow: hidden; 
    text-align: center;

    img {
        position: relative;
        animation: moveUpDown 3s infinite alternate ease-in-out; 
        max-width: 60%;
        height: auto;
        z-index: 1; 
    }

    h1 {
        font-size: 150px;
        color: rgba(0, 0, 0, 0.2);
        z-index: 0; 
        position: absolute; 
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);
        margin: 0;
    }
}


.image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%; 
    overflow: hidden; 
    z-index: 1;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0); 
    }
    100% {
        transform: translateY(40px); 
    }
}

.row {
    display: flex;
    margin: 0;
    padding: 0;
    height: 50vh; 
}

.col-xl-4, .col-lg-4, .col-md-4{
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.features__thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 1;
    transition: transform 0.5s ease;
}

.col-xl-4:hover .features__thumb{
    transform: scale(1.1);
}

.features__content {
    position: absolute;
    z-index: 2;   
    color: #fff;
    text-align: center;
}
.features__content2 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;   
    color: #fff;
    text-align: center;
}

.features__content h2{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features__content2 h2{
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.features__content p, .features__content2 p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.features__content .discount a, .features__content2 .discount a {
    text-decoration: none;
    color: yellow;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.features__content .discount a:hover, .features__content2 .discount a:hover {
    color: orange;
}

.col-1 .features__thumb {
    background-image: url('png/fe1.png');
}

.col-2 .features__thumb {
    background-image: url('png/banner-home2.jpg');
}

.col-3 .features__thumb {
    background-image: url('png/fe3.png');
}

.section-wrapper {
    justify-content: center;
    padding-top: 5%;
}

.section-title, p {
    text-align: center;
}

.tipes-shoes {
    padding: 2%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.but {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(234, 234, 234, 0.576);
    width: 15%;
    height: 5%;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    z-index: 3;
 
}

.but:hover {
    background-color: #f0f0f0;
}

.offers-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.offers {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px; 
    overflow: hidden;
    width: 90%;
    justify-content: space-between; 
}

.offer-item {
    flex: 0 0 calc(30% - 10px);
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-item img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.offer-item:hover {
    transform: scale(1.05);
}

.info {
    padding: 10px;
}

.category {
    font-size: 12px;
    color: #666;
}

.stars {
    font-size: 14px;
    color: #f5a623;
}

.name {
    font-size: 14px;
    font-weight: bold;
}

.price {
    font-size: 14px;
    color: #007bff;
}


.swipe-btn {
    background: rgba(68, 68, 68, 0.5);
    color: #fff;
    border: none;
    padding: 15px 25px; 
    cursor: pointer;
    z-index: 10;
    font-size: 20px; 
    border-radius: 10px;
}

.swipe-btn:hover {
    background: rgba(68, 68, 68, 0.7);
}

.swipe-btn.left, .swipe-btn.right {
    margin-right: auto; 
  
}


.footer {
    background-color: #1c1c1c;
    color: #bdbdbd;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 10vh;
}

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

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p, .footer-column ul, .footer-column a {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.6;
    margin: 0;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #bdbdbd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #ffffff;
}

.subscribe-form {
    display: flex;
    margin-top: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #007bff;
}

.footer-bottom a:hover {
    color: #0056b3;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-links li a {
    font-size: 14px;
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
}



@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .menu-left, .menu-right {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    .menu-item {
        padding: 10px;
        text-align: center;
    }

    .Featurestipes {
        flex-direction: column;
    }

    .offers-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .offer-item {
        width: 100%;
        flex: 0 0 auto;
    }

    .footer {
        padding: 20px 10px;
        font-size: 12px;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-column {
        margin: 10px 0;
        min-width: auto;
    }

    .swipe-btn {
        font-size: 16px;
        padding: 10px 15px;
    }

    .tipes-shoes {
        flex-direction: column;
        gap: 10px;
    }

    .but {
        width: 100%;
        height: auto;
    }

    .col-xl-4, .col-lg-4, .col-md-4 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .features__content h2, .features__content2 h2 {
        font-size: 1.5rem;
    }

    .features__content p, .features__content2 p {
        font-size: 1rem;
    }
}
