@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .3s ease-in-out;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Scrollbar */
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
    background: orange;
    border-radius: 5px;
}

body {
    background: #f8f8f8;
    color: #333;
}

/* Header */
.header {
    width: 96%;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5rem;
    background: white;
    border-radius: 10px;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: orange;
}

.header .navbar a {
    font-size: 1.6rem;
    color: #333;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .navbar a:hover {
    color: orange;
}

.header .icons div,
.header .icons a {
    font-size: 2rem;
    margin-left: 1.5rem;
    color: #333;
    cursor: pointer;
}

.header .icons div:hover,
.header .icons a:hover {
    color: orange;
}

/* Sale Banners Section */
.banner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 8rem 5%;
    justify-content: center;
}

/* Individual Banner */
.banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-5px);
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner:hover img {
    transform: scale(1.05);
}

/* Content Overlay */
.banner .content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.banner:hover .content {
    background: rgba(0, 0, 0, 0.8);
}

.banner .content span {
    font-size: 1.5rem;
    display: block;
}

.banner .content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: orange;
}

/* Modern Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1rem;
    padding: 10px 18px;
    border-radius: 5px;
    background: orange;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 3px 10px rgba(255, 140, 0, 0.5);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: darkorange;
    transform: translateY(-3px);
}

.btn i {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 3rem;
    }
    
    .banner-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .btn {
        font-size: 1.4rem;
    }
}
