* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f2f2f2;
}

header {
    background-color: #01453e;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: white;
    justify-content: space-between;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-icon {
    font-size: 22px;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.logo i {
    background-color: #00bfff;
    border-radius: 50%;
    padding: 8px;
}

.search-bar {
    flex: 1;
    margin: 0 20px;
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 40px;
    border: none;
    font-size: 16px;
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #555;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
}

.header-icons i {
    font-size: 22px;
}

.hero {
    background: #084D50;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px 80px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: #eaeaea;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: -1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-text button {
    padding: 12px 25px;
    font-size: 18px;
    background-color: #aaff77;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }
}











/* ========================= */
/* Shoe Category - 3D Vibe Modern */
/* ========================= */
/* Shoe Category - 3D Vibe Modern */
.shoe-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.category-card {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    width: 180px; /* default desktop width */
    transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1), 
                box-shadow 0.5s ease, 
                filter 0.5s ease;
    font-family: 'Segoe UI', sans-serif;
    perspective: 1000px;
    cursor: pointer;
}

.category-card:hover {
    transform: rotateY(15deg) translateY(-10px) scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #01453e;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #65AA45;
}

.category-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 10px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.category-card:hover img {
    transform: rotateY(-15deg) scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* Tablet / small desktop */
@media (max-width: 1024px) {
    .category-card {
        width: 45%;
        aspect-ratio: 1 / 1; /* square shape */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* image div fill করবে */
        border-radius: 12px;
    }
}

/* Mobile - 3 categories per row */
@media (max-width: 768px) {
    .category-card {
        width: calc(33.33% - 10px); /* 3 per row with gap */
        aspect-ratio: 1 / 1; /* square */
        padding: 8px;
        margin: 5px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative; /* h3 overlay করার জন্য */
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 14px;
        position: absolute;
        bottom: 8px;
        left: 8px;
        color: #fff;
        background-color: rgba(0,0,0,0.4);
        padding: 3px 6px;
        border-radius: 5px;
        text-align: center;
    }
}


/* Small Mobile */
@media (max-width: 480px) {
    .category-card {
        width: calc(50% - 8px);
        aspect-ratio: 1 / 1;
        padding: 8px;
        margin: 4px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 17px;
        position: absolute;
        bottom: 8px;
        left: 8px;
        color: #fff;
        background-color: rgba(0,0,0,0.4);
        padding-top: 7px;
        padding: 3px 6px;
        border-radius: 5px;
    }
}








/*offer section*/
.full{
    width: 100%;
    background-color:  #E9E9E9;
}
.offer{
    width: 65%;
    height: 350px;
    background-color:  #FFFFFF;
    margin: 0px auto;
    border-radius: 20px;
    display: flex;
    padding: 20px;
}
.offer .image{
    width: 50%;
    
}
.offer .details{
    width: 50%;
}
.offer .details #d-p01{
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    font-family: "Audiowide", sans-serif;
}
.offer .details #time{
    color: red;
    font-size: 28px;
    text-align: center;
    margin-top: -20px;
}

.offer .details #des-p03 {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 15px;
    font-size: 14px;
}

.offer .details .color{
    display: flex;     
    gap: 6px;          
    margin-top: -10px;   
}


.offer .details .color1,
.offer .details .color2,
.offer .details .color3,
.offer .details .color4{
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
.offer .details .color1{ background-color: red; }
.offer .details .color2{ background-color: green; }
.offer .details .color3{ background-color: blue; }
.offer .details .color4{ background-color: hotpink; }

.offer .details .butn{
    display: flex;
    gap: 20px; 
    margin-top: 15px;
}
.offer .details .butn button{
    border-radius: 25px;
    padding: 0px 20px;
}









.new-arrival {
    padding: 40px 20px;
    background-color: #eaeaea;
    font-family: 'Segoe UI', sans-serif;
}

.new-arrival h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.product-card {
    background-color: #fff;
    width: 180px;
    text-align: center;
    padding: 20px 10px 55px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        50% 95%,
        0 85%
    );
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    height: 60px;
    background-color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    transform: perspective(300px) rotateX(7deg);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.add-to-cart {
    background-color: #eef1ec;
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    padding: 0;
    margin-top: 15px;
    position: relative;
    overflow: visible;
}

.add-to-cart::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #eef1ec;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: -1;
}

.add-to-cart::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #fff;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: 1;
    pointer-events: none;
}

.add-to-cart i {
    color: #0f0;
    font-size: 22px;
    margin-top: 25px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

@media (max-width: 768px) {
    .product-container {
        justify-content: center;
    }

    .product-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 90%;
    }
}









footer{
    background-color: #084D50;
    width: 100%;
    margin-bottom: -20px;
}
footer pre{
    font-size: 19px;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}