
:root {
    --text-color: #fff;
    --icon-primary-color: #fe7784;
    --icon-secondary-color: #a19f9f;
    --icon-tertiary-color: #4d4d4d;
    --border-primary-color: #b3b2b2;
    --border-secondary-color: #e8e8e8;
    --fill-button-primary: #e03546;
    --fill-button-secondary: #e15563;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

a {
    text-decoration: none;
    color: var(--icon-tertiary-color);
}

li {
    list-style-type: none;
}

p,
h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* NAVlINK COLLECTION */
.home-page {
    font-size: .75em;
    margin-top: 2px;
    font-weight: 300;
}

.home-page span {
    color: var(--border-primary-color);
}

.collection-container h1 {
    font-size: 1.8em;
    font-weight: 420;
}

.title {
    margin: .8em 0;
}

.collection-container p {
    font-weight: 300;
    font-size: .95em;
}

.head-selection {
    border-bottom: 1.5px solid #ccc;
    position: relative;
    margin-bottom: 1em;
    margin-left: 0 !important;
}

.head-selection .handpicked-title {
    color: #EF4F5F;
}

.head-selection .handpicked-title,
.head-selection .saved-title {
    cursor: pointer;
    padding: 0 1em;
    padding-bottom: 10px;
    position: relative;
}

.head-selection .handpicked-title::after,
.head-selection .saved-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.head-selection .handpicked-title.active::after,
.head-selection .saved-title.active::after {
    background-color: #EF4F5F;
}

.head-selection a {
    text-decoration: none;
    color: inherit;
}

/* GRID FOOT CONTAINER */
.handpicked {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.2em;
}

.product {
    position: relative;
    border-radius: 0.48em;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.product:hover {
    transform: translateY(-5px);
}

.product .image {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/11;
}

.product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.9em;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.product #title {
    font-size: 1.08em;
    font-weight: 500;
    margin-bottom: 0.48em;
}

.product #place {
    font-size: 0.84em;
}

#footer {
    width: 100%;
    margin-top: auto;
    position: relative;
    bottom: 0;
}

footer i {
    font-size: 1.2em;
    margin: 0 .3em;
}