
/* PDP */
.pdp-main {
	padding-top: 32px;
	padding-bottom: 80px;
	background-color: #FFFFFF;
}

.pdp-holder {
	display: flex;
	gap: 80px;
	margin-top: 24px;
}

.pdp-image-holder {
	width: 40%;
}

.pdp-featured-image { 
	width: 100%; 
	height: auto; 
	display: block; 
	border-radius: 32px;
}

.pdp-gallery-flickity {
	margin-top: 32px;
}

.pdp-gallery-flickity__cell{
	width: 100%;
}
  
.pdp-gallery-flickity .flickity-viewport {
	height: 280px; /* must be the same as cell */
}
  
.pdp-gallery-flickity__cell {
	height: 280px; /* must be the same as viewport */
	display: flex;
	align-items: center;
	justify-content: center;
}
  
/* "CONTAIN" */
.pdp-gallery-thumb {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	border-radius: 32px;
}

.pdp-video-holder {
    margin-top: 32px;
}

.pdp-data-holder {
	width: 60%;
}

.pdp-badge-holder {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.pdp-category-badge {
	font-family: var(--global-font-family-2);
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	margin: 0;
	color: #000000B2;
	border: 1px solid #00000080;
	background-color: #0000000D;
	padding: 8px 12px;
	border-radius: 50px;
}

.pdp-category-badge a {
	text-decoration: none;
	color: #000000B2;
}

.pdp-tag-badge {
	font-family: var(--global-font-family-2);
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	margin: 0;
	color: #FFFFFFB2;
	border: 1px solid #4E665B;
	background-color: #4E665B;
	padding: 8px 12px;
	border-radius: 50px;
}

.pdp-tag-badge a {
	text-decoration: none;
	color: #FFFFFFB2;
}

.pdp-title-main {
	font-family: var(--global-font-family-1);
	font-weight: 400;
	font-size: 48px;
	line-height: 120%;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 24px;
	color: #000000;
}

.product-type-simple .pdp-price-holder {
	flex-direction: row-reverse;
}

.pdp-price-holder {
	font-family: var(--global-font-family-1);
	font-weight: 400;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
	color: #005686;
	margin-bottom: 40px;
	background: none;
	display: inline-flex;
    /* flex-direction: row-reverse; */
    align-items: center;
    gap: 10px;
}

.pdp-price-holder del {
	font-size: 18px;
	text-decoration: line-through;
	color: #414141;
}

.woocommerce-variation-price .price {
	font-family: var(--global-font-family-1);
	font-weight: 400;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
	color: #005686;
	margin-top: 20px;
	margin-bottom: 20px;
	background: none;
	display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}

.woocommerce-variation-price del {
	font-size: 18px;
	text-decoration: line-through;
	color: #414141;
}

.pdp-short-description {
	font-family: var(--global-font-family-2);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #1A1A1A;
	margin: 0;
	margin-bottom: 24px;
}

.pdp-short-description p {
	margin: 0;
	margin-bottom: 15px;
}

.pdp-short-description a {
	color: #005686;
}

.pdp-add-to-cart form,
.pdp-add-to-cart form .woocommerce-variation-add-to-cart {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: stretch;
}

.single-product form.cart .single_add_to_cart_button{
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
}

.single-product form.cart .buy-now-button{
	flex: 0 0 100%;
	width: 100%;
	margin: 0;
}

.pdp-add-to-cart form .quantity { 
	display: inline-flex;
    align-items: center;
	flex: 0 0 auto;
	margin: 0;
}

.single-product form.cart .buy-now-button {
	height: 54px;
	border: 1px solid #414141;
	padding: 16px 24px;
	border-radius: 50px;
	background-color: #FFFFFF;
	font-family: var(--global-font-family-2);
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	margin: 0;
	color: #092F43;
}

.pdp-add-to-cart form .quantity .pdp-qty-step {
    width: 48px;
    height: 54px;   
    border: none;
    background: #F5F5F5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pdp-add-to-cart form .quantity .pdp-qty-step.minus {
	border-radius: 50px 0 0 50px;
}

.pdp-add-to-cart form .quantity .pdp-qty-step.plus {
	border-radius: 0 50px 50px 0;
}

.pdp-add-to-cart form .quantity .qty {
	width: 48px; 
	height: 54px; 
	text-align: center; 
	border-top: none;
    border-bottom: none;
	border-left: 1px solid #CBCBCB; 
	border-right: 1px solid #CBCBCB; 
	background: #F5F5F5;
}

.pdp-add-to-cart form button.single_add_to_cart_button {
	width: 100%;
	height: 54px;
	box-sizing: border-box;
	background-color: #AADEFF !important;
	padding: 16px 24px;
	border-radius: 50px;
	font-family: var(--global-font-family-2);
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: #092F43 !important;
}

.pdp-add-to-cart .qty::-webkit-outer-spin-button,
.pdp-add-to-cart .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp-add-to-cart .qty[type=number] {
    -moz-appearance: textfield;
}

.pdp-mini-notice {
	font-family: var(--global-font-family-2);
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	text-align: center;
	margin: 0;
	color: #000000;
	margin-top: 32px;
	text-align: center;
	margin-bottom: 40px;
}

.pdp-content-holder {
    display: grid;
    gap: 0;
    margin-bottom: 48px;
}

.pdp-content-item {
    background-color: #FFFFFF;
    overflow: hidden;
}

.pdp-content-trigger {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 0;
    cursor: pointer;
	border-top: 1px solid #0000001A;
}

.pdp-content-title-holder {
	display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.pdp-content-title {
    font-family: var(--global-font-family-1);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
	margin: 0;
}

.pdp-content-description {
    font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease; 
}

.pdp-content-item.is-open .pdp-content-description {
    min-height: fit-content;
    padding-bottom: 40px;
}

.pdp-content-description p {
    margin: 0;
	margin-bottom: 20px;
    color: #414141
}

.pdp-content-description h3,
.pdp-content-description h3 strong {
	font-family: var(--global-font-family-1);
    font-weight: 400;
    font-size: 23px;
    line-height: 120%;
    color: #000000;
}

.pdp-content-description h4,
.pdp-content-description h4 strong {
	font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #000000;
}

.pdp-content-description ul,
.pdp-content-description ol {
	margin-left: 0;
}

.pdp-content-trigger svg {
    transition: transform 0.25s ease;
    transform-origin: center;
}

.pdp-content-item.is-open .pdp-content-trigger svg {
    transform: rotate(180deg);
}

.pdp-content-item.is-open .pdp-content-trigger .pdp-content-title-holder svg {
    transform: none !important;
}

.pdp-add-to-cart form.variations_form {
	flex-direction: column;
}

.pdp-add-to-cart form table.variations {
    font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #414141;
	margin-bottom: 0;
}

.single-product select#pa_pol.is-girl {
	background-color: #f8b6d2 !important;
}
  
.single-product select#pa_pol.is-boy {
	background-color: #9ecbff !important;
}
  
.single-product select#pa_pol option {
	background-color: #fff !important;
	color: #000;
}

.pdp-add-to-cart form table.variations tbody tr .label {
    text-align: left;
}

.pdp-add-to-cart form table.variations tbody .value select {
    border: 1px solid #414141;
    padding: 8px 12px;
    border-radius: 50px;
    font-family: var(--global-font-family-2);
}

.pdp-add-to-cart form table.variations tbody .value .reset_variations {
    font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #414141;
    margin-left: 10px;
}

.pdp-add-to-cart form .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
}

.single-product .home-why-main .buttons-action-holder a,
.single-product .part-gift-main .buttons-action-holder a {
    display: none;
}

.single-product .woocommerce-variation-description p {
    font-family: var(--global-font-family-2);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #ff0a0a;
    margin: 0;
}

@media (max-width: 1200px) {

    .pdp-holder {
		gap: 50px;
	}
}

@media (max-width: 1024px) {

	.pdp-holder {
		gap: 20px;
	}
}

@media (max-width: 767px) {

	.pdp-holder {
		gap: 40px;
		flex-direction: column;
	}

	.pdp-image-holder,
	.pdp-data-holder {
		width: 100%;
	}
}

@media (max-width: 500px) {

	.pdp-main {
		padding-bottom: 32px;
	}

	.pdp-image-holder {
		text-align: center;
	}

	.pdp-gallery-flickity {
		margin-top: 20px;
	}

	.pdp-gallery-flickity .flickity-viewport {
		height: 210px; /* must be the same as cell */
	}
	  
	.pdp-gallery-flickity__cell {
		height: 210px; /* must be the same as viewport */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.pdp-title-main {
		font-size: 40px;
	}
}

/* ⓘ Attributes */
th.label {
	position: relative;
}

.pdp-attr-info-btn {
    margin-left: 5px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .25);
    background: #fff;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}
  
/* Modal */
.pdp-attr-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999;
}

.pdp-attr-modal.is-open { 
	display: block; 
}

.pdp-attr-modal__overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.45);
}

.pdp-attr-modal__box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: min(520px, calc(100% - 24px));
	background: #fff;
	border-radius: 14px;
	padding: 18px 16px;
	box-sizing: border-box;
}

.pdp-attr-modal__close {
	position: absolute;
	right: 10px;
	top: 8px;
	border: 0;
	background: transparent;
	font-size: 22px;
	cursor: pointer;
	padding: 4px 9px;
}

.pdp-attr-modal__title {
	font-family: var(--global-font-family-1);
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pdp-attr-row {
	font-family: var(--global-font-family-2);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	padding: 8px 0;
	border-top: 1px solid rgba(0,0,0,.08);
}