/* ===========================================
   MUFASA SHOES
   STYLE.CSS (PART 4A)
=========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 20px;
}

/* Links */

a {
    text-decoration: none;
    color: #fff;
}

img {
    width: 100%;
    display: block;
}

section {
    padding: 80px 8%;
}

/* Section Heading */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: #d4af37;
    font-weight: 700;
}

.section-title p {
    margin-top: 10px;
    color: #bdbdbd;
}


/* =======================
TOP BAR
======================= */

.topbar {

    background: #d4af37;

    display: flex;

    justify-content: space-between;

    padding: 12px 8%;

    color: #111;

    font-size: 15px;

    font-weight: 600;

}

.topbar .right {

    display: flex;

    gap: 20px;

}

.topbar a {

    color: #111;

    font-weight: 600;

    transition: .3s;

}

.topbar a:hover {

    color: white;

}


/* =======================
NAVBAR
======================= */

header {

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    background: #111;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);

}

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 8%;

}

.logo span {

    font-size: 34px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #d4af37;

}

.logo p {

    font-size: 13px;

    color: #bbb;

    margin-top: 4px;

}

nav ul {

    display: flex;

    list-style: none;

    gap: 35px;

}

nav ul li a {

    font-size: 16px;

    font-weight: 500;

    transition: .3s;

}

nav ul li a:hover {

    color: #d4af37;

}


/* SEARCH */

.search {

    display: flex;

    align-items: center;

    background: #1d1d1d;

    border-radius: 40px;

    overflow: hidden;

}

.search input {

    border: none;

    outline: none;

    padding: 12px 18px;

    background: transparent;

    color: #fff;

    width: 220px;

}

.search button {

    background: #d4af37;

    border: none;

    padding: 12px 18px;

    cursor: pointer;

    color: #111;

    font-size: 16px;

}

.menu {

    display: none;

    font-size: 30px;

    cursor: pointer;

    color: white;

}


/* =======================
HERO
======================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    background: linear-gradient(to right, #050505, #1b1b1b);

    overflow: hidden;

    position: relative;

}

.hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    background: #d4af37;

    filter: blur(220px);

    opacity: .10;

    top: -250px;

    right: -200px;

    border-radius: 50%;

}

.slider {

    width: 100%;

    position: relative;

}

.slide {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    min-height: 100vh;

}

.slide .content {

    flex: 1;

    animation: fadeLeft 1s;

}

.slide h5 {

    font-size: 20px;

    color: #d4af37;

    letter-spacing: 2px;

    margin-bottom: 15px;

}

.slide h1 {

    font-size: 65px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-weight: 800;

}

.slide h1 span {

    color: #d4af37;

}

.slide p {

    font-size: 18px;

    color: #bdbdbd;

    margin-bottom: 35px;

    line-height: 1.8;

    max-width: 600px;

}

.slide a {

    display: inline-block;

    padding: 16px 40px;

    background: #d4af37;

    color: #111;

    border-radius: 50px;

    font-weight: 700;

    transition: .4s;

}

.slide a:hover {

    background: white;

    transform: translateY(-5px);

}

.image {

    flex: 1;

    text-align: center;

}

.image img {

    max-width: 650px;

    animation: float 4s infinite;

}


/* Dots */

.dots {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

}

.dot {

    width: 14px;

    height: 14px;

    background: #555;

    border-radius: 50%;

    cursor: pointer;

}

.dot.active {

    background: #d4af37;

}


/* =======================
FEATURES
======================= */

.features {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    background: #121212;

}

.features .box {

    background: #181818;

    padding: 35px;

    border-radius: 15px;

    text-align: center;

    transition: .4s;

}

.features .box:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 30px rgba(212, 175, 55, .3);

}

.features i {

    font-size: 45px;

    color: #d4af37;

    margin-bottom: 20px;

}

.features h3 {

    margin-bottom: 10px;

    font-size: 22px;

}

.features p {

    color: #bbb;

}


/* =======================
ABOUT
======================= */

.about {

    display: flex;

    align-items: center;

    gap: 60px;

}

.about .left {

    flex: 1;

}

.about .left img {

    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);

}

.about .right {

    flex: 1;

}

.about h5 {

    font-size: 20px;

    color: #d4af37;

    margin-bottom: 15px;

}

.about h2 {

    font-size: 48px;

    margin-bottom: 20px;

    line-height: 1.3;

}

.about p {

    font-size: 17px;

    line-height: 1.9;

    color: #bbb;

    margin-bottom: 35px;

}

.about a {

    display: inline-block;

    padding: 15px 40px;

    background: #d4af37;

    color: #111;

    font-weight: 700;

    border-radius: 40px;

    transition: .3s;

}

.about a:hover {

    background: white;

}


/* =======================
ANIMATIONS
======================= */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes fadeLeft {

    from {

        opacity: 0;

        transform: translateX(-70px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


/* =======================
RESPONSIVE
======================= */

@media(max-width:991px) {

    nav ul {
        display: none;
    }

    .search {
        display: none;
    }

    .menu {
        display: block;
    }

    .slide {

        flex-direction: column-reverse;

        text-align: center;

        padding-top: 120px;

    }

    .slide h1 {

        font-size: 45px;

    }

    .about {

        flex-direction: column;

    }

    .features {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .topbar {

        display: none;

    }

    section {

        padding: 60px 5%;

    }

    .features {

        grid-template-columns: 1fr;

    }

    .slide h1 {

        font-size: 35px;

    }

    .section-title h2 {

        font-size: 30px;

    }

    .about h2 {

        font-size: 34px;

    }

}

@media(max-width:480px) {

    .logo span {

        font-size: 26px;

    }

    .slide h1 {

        font-size: 28px;

    }

    .slide p {

        font-size: 15px;

    }

    .slide a {

        padding: 14px 28px;

    }

}

/*=========================================
    PART 4B
    BRANDS
=========================================*/

.brands {
    background: #111;
    overflow: hidden;
}

.brand-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.brand-slider::-webkit-scrollbar {
    display: none;
}

.brand-card {
    min-width: 180px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .05);
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, .25);
}

.brand-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: auto;
}

.brand-card h3 {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
}

/*=========================================
    PRODUCTS
=========================================*/

.products {
    background: #0b0b0b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.product-card {
    background: #171717;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .05);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.product-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: .5s;
}

.product-card:hover img {
    transform: scale(1.08);
}

.discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #111;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.product-card h4 {
    padding: 18px 20px 10px;
    font-size: 22px;
}

.price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.old {
    color: #888;
    text-decoration: line-through;
    font-size: 17px;
}

.newprice {
    color: #d4af37;
    font-size: 26px;
    font-weight: 700;
}

.rating {
    padding: 18px 20px;
    color: #FFD700;
    font-size: 20px;
}

.product-card button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    border: none;
    background: #d4af37;
    color: #111;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

.product-card button:hover {
    background: #fff;
}

/*=========================================
    OFFER
=========================================*/

.offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, #181818, #101010);
}

.offer-content {
    flex: 1;
}

.offer-content h5 {
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.offer-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.offer-content p {
    color: #bbb;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.offer-content a {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s;
}

.offer-content a:hover {
    background: #fff;
}

.offer-image {
    flex: 1;
}

.offer-image img {
    max-width: 550px;
    margin: auto;
    animation: float 4s infinite;
}

/*=========================================
    WHY CHOOSE
=========================================*/

.why {
    background: #111;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-box {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: .4s;
}

.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .25);
}

.why-box i {
    font-size: 55px;
    color: #d4af37;
    margin-bottom: 20px;
}

.why-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.why-box p {
    color: #bdbdbd;
    line-height: 1.7;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .offer {
        flex-direction: column;
        text-align: center;
    }

    .offer-content h2 {
        font-size: 45px;
    }

    .offer-image img {
        width: 100%;
    }

}

@media(max-width:768px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-width: 150px;
    }

    .offer-content h2 {
        font-size: 34px;
    }

    .product-card img {
        height: 220px;
    }

}

@media(max-width:480px) {

    .brand-card {
        min-width: 130px;
        padding: 18px;
    }

    .brand-card img {
        width: 70px;
        height: 70px;
    }

    .product-card h4 {
        font-size: 18px;
    }

    .newprice {
        font-size: 22px;
    }

    .rating {
        font-size: 18px;
    }

}

/*==================================================
            PART 4C
      TESTIMONIAL SECTION
==================================================*/

.testimonial {
    background: #0f0f0f;
    padding: 90px 8%;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .06);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, .25);
}

.testimonial-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    border: 4px solid #d4af37;
}

.testimonial-card h3 {
    margin: 20px 0 8px;
    font-size: 24px;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #bdbdbd;
    line-height: 1.8;
}


/*==================================================
                CONTACT FORM
==================================================*/

.contact {
    background: #111;
    padding: 90px 8%;
}

#orderForm {
    max-width: 900px;
    margin: auto;
    background: #1a1a1a;
    padding: 45px;
    border-radius: 20px;
}

.input-box {
    margin-bottom: 22px;
}

.input-box input,
.input-box textarea,
.input-box select {

    width: 100%;
    padding: 16px 18px;
    background: #262626;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .3s;

}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {

    border-color: #d4af37;

}

textarea {
    resize: none;
    height: 140px;
}

input[type=file] {
    padding: 12px;
}

.contact h3 {
    margin: 20px 0;
    color: #d4af37;
}

.payment {

    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;

}

.payment label {

    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

}

#qrBox {

    display: none;
    text-align: center;
    margin-bottom: 25px;

}

#qrBox img {

    width: 220px;
    margin: auto;
    border-radius: 15px;
    background: white;
    padding: 10px;

}

#orderForm button {

    width: 100%;
    padding: 18px;
    background: #d4af37;
    color: #111;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;

}

#orderForm button:hover {

    background: #fff;
    transform: translateY(-4px);

}


/*==================================================
                    FOOTER
==================================================*/

footer {

    background: #050505;
    padding: 60px 8%;
    text-align: center;

}

.footer-logo h2 {

    color: #d4af37;
    font-size: 38px;
    margin-bottom: 10px;

}

.footer-logo p {

    color: #bdbdbd;
    margin-bottom: 35px;

}

.footer-links {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;

}

.footer-links a {

    color: white;
    transition: .3s;

}

.footer-links a:hover {

    color: #d4af37;

}

.social {

    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;

}

.social a {

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: .3s;

}

.social a:hover {

    background: #d4af37;
    color: #111;
    transform: translateY(-6px);

}

footer p {

    color: #888;

}


/*==================================================
           FLOATING WHATSAPP
==================================================*/

.whatsapp {

    position: fixed;
    right: 25px;
    bottom: 30px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    font-size: 34px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);

    z-index: 999;

    transition: .3s;

}

.whatsapp:hover {

    transform: scale(1.1);

}


/*==================================================
            BACK TO TOP
==================================================*/

#topBtn {

    position: fixed;

    left: 25px;

    bottom: 30px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: #d4af37;

    color: #111;

    font-size: 22px;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: .3s;

}

#topBtn:hover {

    transform: translateY(-5px);

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .testimonial-slider {

        grid-template-columns: repeat(2, 1fr);

    }

    .payment {

        flex-direction: column;

        gap: 15px;

    }

}

@media(max-width:768px) {

    .testimonial-slider {

        grid-template-columns: 1fr;

    }

    #orderForm {

        padding: 25px;

    }

    .footer-links {

        gap: 18px;

    }

    .social {

        gap: 15px;

    }

    .whatsapp {

        width: 58px;
        height: 58px;
        font-size: 28px;

    }

    #topBtn {

        width: 50px;
        height: 50px;

    }

}

@media(max-width:480px) {

    .contact {

        padding: 70px 5%;

    }

    #orderForm {

        padding: 20px;

    }

    .footer-logo h2 {

        font-size: 30px;

    }

    .footer-links {

        flex-direction: column;

        gap: 15px;

    }

    .social {

        flex-wrap: wrap;

    }

}

/* ==========================
ORDER POPUP
========================== */

.order-popup {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .75);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

    animation: fadeIn .3s;

}

.popup-box {

    width: 380px;

    max-width: 90%;

    background: #1b1b1b;

    padding: 35px;

    border-radius: 18px;

    text-align: center;

    color: #fff;

}

.popup-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 36px;

    font-weight: bold;

    color: #fff;

    margin-bottom: 20px;

}

.popup-box h2 {

    margin-bottom: 15px;

    color: #d4af37;

}

.popup-box p {

    line-height: 1.8;

    color: #bbb;

    margin-bottom: 25px;

    white-space: pre-line;

}

.popup-box button {

    padding: 14px 35px;

    border: none;

    border-radius: 40px;

    background: #d4af37;

    font-weight: 700;

    cursor: pointer;

}

/*=================================
MOUSE GLOW
=================================*/

.mouse-glow {

    position: fixed;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    pointer-events: none;

    background: radial-gradient(rgba(212, 175, 55, .18),

            transparent 70%);

    transform: translate(-50%, -50%);

    z-index: 0;

    transition: left .08s linear, top .08s linear;

    filter: blur(35px);

}


/*=================================
SCROLLING
=================================*/

.scrolling {

    scroll-behavior: auto;

}


/*=================================
LOADER
=================================*/

.loader {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #000;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 999999;

    transition: .5s;

}

.loader::after {

    content: "";

    width: 70px;

    height: 70px;

    border: 5px solid #333;

    border-top: 5px solid #d4af37;

    border-radius: 50%;

    animation: spin 1s linear infinite;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

@media(max-width:991px) {

    nav ul {

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #111;

        display: flex;
        flex-direction: column;

        padding: 20px 0;

        transform: translateY(-20px);

        opacity: 0;
        visibility: hidden;

        transition: .4s;

    }

    nav ul.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

    nav ul li {

        padding: 15px;

        text-align: center;

    }

}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.logo p{
    color:#d4af37;
    font-size:15px;
    font-weight:500;
    margin:0;
}
.footer-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-img{
    width: 70px;      /* Icon size */
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo p{
    color: #d4af37;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}
