.shop_container {
    width: 90%;
    height: 1200px;
    margin: 1% 5%;
    border: 5px solid #954ECA;
    display: flex;
    justify-content: space-around;
}

.small_images {
    display: flex;
    margin: 2%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    width: 10%;
    height: 90%;
}

.shop_img_container {
    width: 40%;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.shop_img {
    width: 98%;
    border: var(--border);
}

.shop_img_button {
    width: 100%;
    border: var(--border);
    background-color: var(--secondary);
    cursor: pointer;
    padding: 0;
    margin: 0;
}
    
.small_shop_img {
    width: 100%;
    margin: 0;
}


.item_details {
	width: 40%;
    height: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-top: 2%;
}

.shop_notebook_name {
	font-size: 60px;
    margin: 0;
    margin-top: 1%;
}

.shop_notebook_size {
	font-size: 30px;
    margin: 0;
    margin-top: 1%;
}

.shop_notebook_price {
	font-size: 30px;
    margin: 0;
    margin-top: 1%;
}

.notebook_specs {
	font-size: 25px;
	text-align: left;
}

.quantity_name {
    font-weight: bold;
    font-size: 20px;
}

.quantity-input{
    width: 100px;
}
    
.add_to_basket {
    height: 50px;
    width: 150px;
    font-size: 20px;
}

.add_to_cart_form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1280px) {

  .small_images {
    width: 12%;
  }

  .notebook_specs {
	font-size: 18px;
}

}

@media (max-width: 1024px) {

  .notebook_specs {
	font-size: 15px;
  }

  .shop_notebook_name {
	font-size: 45px;
}

}


@media (max-width: 640px) {

.shop_container {
    flex-direction: column;
    align-items: center;
}

.small_images {
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    height: auto;
}

.shop_img_container {
    width: 90%;
}

.item_details {
    width: 90%;
}

.notebook_specs {
	font-size: 20px;
  }

}