*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    overflow-x: hidden;
}
header {
    background-color: #333;
    color: #fff;
    position: relative;
}

.top-section {
    padding: 10px 20px;
    background-color: #f7f7f7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 12px;
}
.top-section a{
    color: black;
}

.middle-section {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.middle-section nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}


.middle-section nav li {
    margin-right: 20px;
}
.middle-section li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.middle-section .search-bar {
    display: flex;
    align-items: center;
    border:  1px solid gray;
    padding: 5px;
    font-size: 12px;
}
.icon{
    display: flex;
    justify-content: space-between;
}

.middle-section .icons {
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 10px;
}
.icons a{
    color: white;
}
.menu{
    display: none;
}

.bottom-section {
    background-color: #414584;
    padding: 10px;
    text-align: center;
    
}
.bottom-section ul {
    list-style: none;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    margin: 5px 0;
}
.bottom-section a{
    color: white;   
}
.bottom-section .para{
    font-size: 14px;
}
.bottom-section p{
    font-size: 10px;
}

@media(max-width:768px){
    .middle-section ul li{
        display: none;
    }
    .middle-section img{
        margin-left: 250px;
    }
    .menu{
        display: flex;
    }
}

@media(max-width:480px){
    .middle-section ul li{
        display: none;
    }
.middle-section img{
    margin-left: 0;
}
    .menu{
        display: flex;
    }
}

.banner {
    width: 100%;
    height: 75vh;
    background-image: url(./bgPuma1.avif);
    /* background: linear-gradient(to right, #111, #d84e00);  */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 5%;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.text-content {
    max-width: 500px;
}


.text-content h1 {
    font-size: 2em;
    font-weight: bold;
}

.text-content p {
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.8;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    font-size: .7em;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #ccc;
}

@media(max-width:768px){
    .banner{
        background-image: url(./bgPuma.avif);
    }
}
@media(max-width:480px){
    .banner{
        background-image: url(./pumaBG.avif);
        background-position: center;
        background-size: cover;
    }
}

.lowestPrice{
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding:5% 5%;
    color: white;
    background: linear-gradient(to right, #cea907, #d84e00); 
}
.lowestPrice h2{
    font-size: 28px;
    margin-bottom: 5px;
}
 .button {
    font-size: .7em;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}


.container {
    margin: 5% 0;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}
.container h2{
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
}
.container p{
text-align: center;
color: gray;
}
.cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card {
    flex: 1 1 calc(25% - 20px); /* 4 cards per row, with 20px gap */
    /* max-width: calc(25% - 20px); */
    margin: 10px;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2em;
    margin: 15px 0 10px;
    font-weight: bold;
    color: #333;
}

.card button {
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #555;
}
@media (max-width: 992px) {
    .card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row on tablet */
        /* max-width: calc(50% - 20px); */
    }
}
@media (max-width: 480px) {
    .cards{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}



/* for banner 1 */

.banner1 {
    width: 100%;
    height: 75vh;
    background-image: url(./fentyPuma.avif);
    /* background: linear-gradient(to right, #111, #d84e00);  */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 5%;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.text-content {
    max-width: 500px;
}


.text-content h1 {
    font-size: 2em;
    font-weight: bold;
}

.text-content p {
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.8;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    font-size: .7em;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #ccc;
}

@media(max-width:768px){
    .banner{
        background-image: url(./fentyPuma2.avif);
        background-position: center;
        background-size: cover;
    }
}
@media(max-width:480px){
    .banner{
        background-image: url(./fentyPuma2.avif);
        background-position: center;
        background-size: cover;
    }
}

/* for banner 2 */
.banner2 {
    width: 100%;
    height: 75vh;
    background-image: url(./rocyPuma1.avif);
    /* background: linear-gradient(to right, #111, #d84e00);  */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 5%;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    
}
.text-content {
    max-width: 500px;
    /* float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:end ; */
}


.text-content h1 {
    font-size: 2em;
    font-weight: bold;

}

.text-content p {
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.8;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    font-size: .7em;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.buttons button:hover {
    background-color: #ccc;
}

@media(max-width:768px){
    .banner{
        background-image: url(./rocyPuma.avif);
        background-position: center;
        background-size: cover;
    }
}
@media(max-width:480px){
    .banner{
        background-image: url(./fentyPuma2.avif);
        background-position: center;
        background-size: cover;
    }
}

/* above hightlight */

.product-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.product {
    text-align: center;
    margin: 20px;
}

.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product p {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width:768px) {
    .product-grid{
        display: flex;
    }
}
/* Responsive Design */
@media (max-width: 480px) {
    .product-grid {
        flex-direction: column;
    }
}


/* banner 3 */
.banner3 {
    width: 100%;
    height: 75vh;
    background-image: url(./effortPuma.avif);
    /* background: linear-gradient(to right, #111, #d84e00);  */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 5%;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.text-content {
    max-width: 500px;
}


.text-content h1 {
    font-size: 2em;
    font-weight: bold;
}

.text-content p {
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.8;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    font-size: .7em;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #ccc;
}

@media(max-width:768px){
    .banner{
        background-image: url(./bgPuma.avif);
    }
}
@media(max-width:480px){
    .banner{
        background-image: url(./pumaBG.avif);
        background-position: center;
        background-size: cover;
    }
}

/* new thread */
.product-grids {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 ;
    flex-direction: column;
    /* overflow-x: hidden; */
    width: 100%;
    /* max-width: 1400px; */
}
.productss{
    display: flex;
    margin: 20px;
}
.productts {
    /* display: flex; */
    margin: 10px;
    text-align: center;
    
}

.productts img {
    width: 300px;
    height: 320px;
    object-fit: cover;
}

.productts p {
    margin-top: -5rem;
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}

@media  (max-width:768px){
    .productts img {
        width: 150px;
        height: 120px;
        object-fit: cover;
    }
    
}
/* Responsive Design */
@media (max-width: 480px) {
    .productss {
        display: flex;
        flex-direction: column;
        /* margin: 20px; */
    }
    .productts {
    /* display: flex; */
    margin-top: 5rem;
    text-align: center;
    /* width: 100%;   */
}
.productts img {
    width: 200px;
    height: 220px;
    object-fit: cover;
}

}
/* footer sec */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    margin-right: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a {
    font-size: 24px;
}

.payment-methods li {
    display: inline-block;
    margin-right: 10px;
}

.payment-methods img {
    width: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 40px;
        text-align: center;
    }
}




