body {
    margin: 0;
    padding: 0;
}

.header {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 4px solid black;
}

.logo {
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.header_img {
    display: flex;
    gap: 15px;
}

.header_img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
}

.cart-wrap {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.cart-badge {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
}

.q {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    padding: 25px;
}

.q img,
.z img {
    width: 550px;
    height: 700px;
    border-radius: 10px;
}

.z {
    display: flex;
    align-items: center;
    justify-content: center;
}

.images {
    position: relative;
}

.arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.trash {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    width: 260px;
    margin: 0;
    font-family: sans-serif;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 10px;
    overflow: hidden;
}

.trash_link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    text-decoration: none;
}

.trash img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.trash_title {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: black;
}

.trash_link:hover .trash_title {
    text-decoration: underline;
}
