
.itemcatalog-container h3 {
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

.itemcatalog-container .content-wrapper {
    padding: 4rem 0;
}

.itemcatalog-container .item {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.itemcatalog-container .item-image-wrapper,
.itemcatalog-container .item-details {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
}

.itemcatalog-container .item-image-wrapper {
    flex: 3;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
}

.itemcatalog-container .item-details {
    flex: 8;
    padding: 30px 40px;
    justify-content: space-between;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
}

.itemcatalog-container .item-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.itemcatalog-container .meta-item {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    gap: 10px;
}

.itemcatalog-container .meta-item .meta-label {
    display: flex;
    align-items: flex-end;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    width: 120px;
    font-size: 1rem;
}

.itemcatalog-container .add-to-cart-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    margin-left: auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.itemcatalog-container .add-to-cart-btn:hover {
    background-color: var(--primary);
}

.itemcatalog-container .cals-image-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.itemcatalog-container .cals-image-link {
    background-color: var(--tertiary);
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.itemcatalog-container .cals-image-link:hover {
    background-color: var(--primary);
}

.cals-image-wrapper nav {
    width: 100%;
}

#nav-variants .cals-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

#nav-tab {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

#nav-tab > .nav-item:first-child {
    flex: 1;
}

#nav-tab .nav-item {
    cursor: pointer;
    color: black;
    border: none;
    background: #e5f0ff;
}


#nav-tab .nav-item.active {
    background-color: var(--secondary);
    color: white;
}

#nav-tab .nav-item:hover {
    border: none;
}