﻿/*******************/
/* Header Adjustments
/*******************/
.caret-container {
  display: none;
}
header .header-content h1.large {
  font-size: clamp(2rem, calc(6vh + 6vw), 8rem);
  line-height: 4rem;
  margin-bottom: 0;
  margin-top: 3rem;
}

/********/
/* GRID */
/********/
.shop-grid {
	display: grid;
  	width: 100%;
	grid-template-columns: repeat(auto-fit, 290px);
	gap: 3rem;
  	justify-content: center; /*Default: center a single row */
}
/********************/
/* NO ITEMS MESSAGE */
/********************/
.shop-grid__no-items-message {
	margin-bottom: 0;
    grid-column: 1 / span 4;
  	text-align: center;
}
/*********/
/* CARDS */
/*********/
.shop-item-card {
	position: relative;
	display: flex;
	flex-direction: column;
}
.shop-item-card__image-container {
	width: 100%;
	aspect-ratio: 12/9;
  	position: relative;
}
.shop-item-card__show-image-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  padding: 0.75rem;
  cursor: pointer;
  z-index: 1;
}
.shop-item-card__show-image-btn svg path {
  fill: white;
}
.shop-item-card__show-image-btn:hover svg path, .shop-item-card__show-image-btn:focus svg path  {
  fill: var(--teal);
}
.shop-item-card__text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
  	margin-top: 0.5rem;
}
.shop-item-card__top-container {
  	flex-grow: 1;
    margin-bottom: 2rem;
}
.shop-item-card__title {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}
.shop-item-card__description {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-item-card__show-more-btn {
    display: none;
  	border: none;
    padding: 0;
    background-color: transparent;
    color: var(--darkgrey);
    font-weight: bold;
    font-family: "Roboto Regular";
    cursor: pointer;
}
.shop-item-card__show-more-btn--visible {
    display: block;
}
.shop-item-card__price {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.2rem;
}
.shop-item-card__purchase-container {
  	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.shop-item-card--unavailable {
  	filter: grayscale(100%);
}
.shop-item-card__sold-out {
  	font-size: 1rem;
    margin-bottom: 0;
}
.shop-item-card__cover-link {
  	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}
/*********/
/* MODALS */
/*********/
.modal {
  	border-radius: 8px;
    max-width: 900px;
}
.modal::backdrop {
    background-color: rgba(0,0,0,0.8)
}
.modal__header {
  	display: flex;
    justify-content: space-between;
  margin-bottom: 1rem;
}
.modal__title {
    margin-bottom: 0;
    font-weight: bold;
}
.modal__close-btn {
  	height: 50px;
  	width: 50px;
  	padding: 0.75rem;
    cursor: pointer;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
.modal__close-btn svg path, .modal__close-btn svg path {
  	fill: white;
}
.modal__close-btn:hover svg path, .modal__close-btn:focus svg path {
  	fill: var(--teal);
}
.modal__content {
  	max-height: 70dvh;
  	max-height: 70vh;
  	overflow: auto;
}
.modal__content p:last-of-type {
    margin-bottom: 0;
}