/* =========================================================
   TazaShop — Fiche produit (template reconstruit)
   Chargée uniquement sur body.single-product.
   ========================================================= */

/* ---------------------------------------------------------
   1. Base et grille produit
   La galerie et le bloc prix partagent une sous-grille dédiée :
   ils peuvent donc avoir exactement la même hauteur sans que la
   colonne services influence leur taille.
   --------------------------------------------------------- */

.tz-theme.single-product .woocommerce div.product,
.tz-theme.single-product div.product {
	display: block;
	float: none;
	width: auto;
	margin: 0;
}

.tz-theme.single-product .woocommerce div.product div.images,
.tz-theme.single-product .woocommerce div.product div.summary,
.tz-theme.single-product div.product div.images,
.tz-theme.single-product div.product .summary {
	float: none;
	width: auto;
	margin: 0;
}

.taza-product-container {
	width: min(1380px, calc(100% - 48px));
	margin-inline: auto;
	padding-top: 30px;
}

.taza-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 270px);
	gap: 28px;
	align-items: start;
}

.taza-product-main {
	display: grid;
	grid-template-columns: minmax(0, 1.32fr) minmax(320px, .88fr);
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.taza-product-hero__gallery,
.taza-product-hero__info {
	min-width: 0;
}

.taza-product-hero__gallery {
	display: block;
	min-height: 0;
	align-self: start;
	position: sticky;
	top: 16px;
}

.taza-product-hero__info {
	height: auto;
	align-self: start;
}

.taza-product-hero > .tz-product-aside {
	align-self: start;
	min-width: 0;
}

/* ---------------------------------------------------------
   2. Galerie à hauteur naturelle + sticky desktop
   Même comportement de défilement que les cartes services :
   la galerie reste visible et descend avec le viewport tant que
   la zone produit le permet, sans étirer l'image ni la scène.
   --------------------------------------------------------- */

body.tz-theme.single-product .taza-product-hero__gallery .taza-gallery {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.taza-gallery__thumbs {
	order: -1;
	flex: 0 0 78px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.taza-gallery__thumb {
	display: block;
	width: 78px;
	padding: 0;
	border: 1px solid var(--tz-border);
	border-radius: 10px;
	background: var(--tz-white);
	overflow: hidden;
	cursor: pointer;
	transition: border-color .15s ease, opacity .15s ease;
	opacity: .9;
}

body.tz-theme.single-product .taza-gallery__thumbs .taza-gallery__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	opacity: 1;
	margin: 0;
	padding: 4px;
}

.taza-gallery__thumb:hover,
.taza-gallery__thumb.is-active {
	border-color: var(--tz-bordeaux);
	opacity: 1;
}

body.tz-theme.single-product .taza-gallery .taza-gallery__stage {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	display: block;
	border: 1px solid var(--tz-border);
	border-radius: 12px;
	background: var(--tz-rose-light);
	overflow: hidden;
	align-self: flex-start;
}

body.tz-theme.single-product .taza-gallery .woocommerce-product-gallery__wrapper {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.taza-gallery__slide {
	display: none;
}

body.tz-theme.single-product .taza-gallery .taza-gallery__slide.is-active,
body.tz-theme.single-product .taza-gallery .taza-gallery__stage .woocommerce-product-gallery__image,
body.tz-theme.single-product .taza-gallery .taza-gallery__stage .woocommerce-product-gallery__image--placeholder,
body.tz-theme.single-product .taza-gallery .taza-gallery__stage .woocommerce-product-gallery__image a {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: auto;
	margin: 0;
	border: 0;
}

body.tz-theme.single-product .taza-gallery .taza-gallery__slide.is-active {
	padding: 16px;
	transform: none;
}

body.tz-theme.single-product .taza-gallery .taza-gallery__stage .woocommerce-product-gallery__image img,
body.tz-theme.single-product .taza-gallery .taza-gallery__stage .woocommerce-product-gallery__image--placeholder img,
body.tz-theme.single-product .taza-gallery .taza-gallery__stage img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 620px;
	object-fit: contain;
	object-position: center top;
	margin: 0 auto;
	padding: 0;
	box-shadow: none;
}

.taza-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--tz-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, .96);
	color: var(--tz-bordeaux);
	cursor: pointer;
	z-index: 3;
	box-shadow: var(--tz-shadow);
}

.taza-gallery__nav:hover {
	border-color: var(--tz-rose);
	background: var(--tz-white);
}

.taza-gallery__nav--prev {
	left: 16px;
}

.taza-gallery__nav--prev .tz-icon {
	transform: rotate(90deg);
}

.taza-gallery__nav--next {
	right: 16px;
}

.taza-gallery__nav--next .tz-icon {
	transform: rotate(-90deg);
}

.tz-single-badges {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	z-index: 3;
}

.tz-single-badges .tz-badge {
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 999px;
}

.tz-theme.single-product .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: var(--tz-bordeaux);
	font-size: 0;
	z-index: 4;
}

.tz-theme.single-product .onsale {
	display: none;
}

/* ---------------------------------------------------------
   4. Colonne informations
   --------------------------------------------------------- */

.taza-product-hero__info {
	display: flex;
	flex-direction: column;
}

.tz-product__brand {
	margin: 0 0 8px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--tz-text-2);
}

.tz-theme.single-product .product_title {
	display: block;
	font-size: clamp(32px, 3vw, 42px);
	line-height: 1.08;
	margin: 0 0 4px;
	padding: 0;
	color: var(--tz-bordeaux);
	letter-spacing: -.01em;
}

.tz-product__subtitle {
	margin: 0 0 14px;
	font-size: 21px;
	line-height: 1.25;
	color: var(--tz-text);
	font-family: var(--tz-font-title);
}

.tz-theme.single-product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	line-height: 1;
}

.tz-theme.single-product .woocommerce-product-rating .star-rating {
	font-size: 18px;
	color: var(--tz-star);
	float: none;
	margin: 0;
}

.tz-theme.single-product .woocommerce-product-rating .woocommerce-review-link {
	font-size: 13.5px;
	color: var(--tz-text-2);
}

.tz-theme.single-product .woocommerce-product-details__short-description {
	color: var(--tz-text-2);
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 20px;
	max-width: 48ch;
}

.tz-theme.single-product .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

.tz-product__price {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.tz-product__price .price {
	margin: 0;
	color: var(--tz-bordeaux);
	font-family: var(--tz-font-body);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.02em;
}

.tz-product__price .price del {
	color: var(--tz-text-2);
	font-size: 19px;
	font-weight: 500;
	margin-left: 12px;
	opacity: 1;
}

.tz-product__price .price ins {
	text-decoration: none;
	background: transparent;
}

.tz-product__price .tz-badge--sale {
	font-size: 14px;
	font-weight: 700;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--tz-rose);
	color: var(--tz-white);
}

.tz-stock {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 22px;
	font-size: 15px;
	font-weight: 600;
}

.tz-stock__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--tz-green);
}

.tz-stock.is-in {
	color: var(--tz-green);
}

.tz-stock.is-out {
	color: var(--tz-text-2);
}

.tz-stock.is-out .tz-stock__dot {
	background: #C0B2B6;
}

/* ---------------------------------------------------------
   5. Achat
   --------------------------------------------------------- */

/* ---------------------------------------------------------
   Bloc CTA — espacements explicites.

   Règles WooCommerce concurrentes (woocommerce.css) :
     .woocommerce div.product form.cart            → margin-bottom: 2em   (0,3,2)
     .woocommerce div.product form.cart div.quantity → float:left; margin:0 4px 0 0 (0,4,3)
     .woocommerce div.product form.cart .button      → float:left          (0,4,2)
   Nos sélecteurs ajoutent body.tz-theme.single-product + .taza-product-actions
   pour passer devant sans aucun !important.
   --------------------------------------------------------- */

.taza-product-actions {
	display: flex;
	flex-direction: column;
	margin-top: 4px;
}

body.tz-theme.single-product .taza-product-actions form.cart {
	display: block;
	margin: 0;
	padding: 0;
}

body.tz-theme.single-product .taza-product-actions .taza-quantity-block {
	display: block;
	margin: 0 0 20px;
}

body.tz-theme.single-product .taza-product-actions form.cart div.quantity {
	display: inline-flex;
	align-items: stretch;
	float: none;
	margin: 0;
	border: 1px solid var(--tz-border);
	border-radius: 10px;
	overflow: hidden;
	background: var(--tz-white);
}

.tz-qty-label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--tz-text);
}

body.tz-theme.single-product .taza-product-actions form.cart .quantity input.qty {
	width: 86px;
	height: 54px;
	border: 0;
	border-radius: 0;
	text-align: center;
	font-weight: 700;
	font-size: 17px;
	background: var(--tz-white);
	-moz-appearance: textfield;
}

body.tz-theme.single-product .taza-product-actions form.cart .quantity input.qty::-webkit-outer-spin-button,
body.tz-theme.single-product .taza-product-actions form.cart .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.tz-qty-btn {
	width: 54px;
	border: 0;
	background: var(--tz-rose-light);
	color: var(--tz-bordeaux);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tz-qty-btn:hover {
	background: var(--tz-rose-powder);
}

body.tz-theme.single-product .taza-product-actions form.cart button.single_add_to_cart_button,
body.tz-theme.single-product .taza-product-actions form.cart .single_add_to_cart_button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	float: none;
	width: 100%;
	height: 56px;
	min-height: 56px;
	margin: 0 0 12px;
	padding: 0 24px;
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	border-radius: 8px;
	background: var(--tz-bordeaux);
	color: var(--tz-white);
}

body.tz-theme.single-product .taza-product-actions form.cart .single_add_to_cart_button:hover,
body.tz-theme.single-product .taza-product-actions form.cart .single_add_to_cart_button:focus {
	background: var(--tz-bordeaux-dark);
}

body.tz-theme.single-product .taza-product-actions form.cart .single_add_to_cart_button::before {
	content: "";
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin: 0;
	background-color: currentColor;
	-webkit-mask: var(--tz-cart-icon) center / contain no-repeat;
	mask: var(--tz-cart-icon) center / contain no-repeat;
}

/* Bouton WhatsApp : vert WhatsApp officiel. */
body.tz-theme.single-product .taza-product-actions .taza-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 56px;
	min-height: 56px;
	margin: 0 0 18px;
	padding: 0 24px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	border-radius: 8px;
	background: #25D366;
	color: var(--tz-white);
}

body.tz-theme.single-product .taza-product-actions .taza-whatsapp:hover,
body.tz-theme.single-product .taza-product-actions .taza-whatsapp:focus {
	background: #1DA851;
	color: var(--tz-white);
}

body.tz-theme.single-product .taza-product-actions .taza-whatsapp .tz-icon {
	color: var(--tz-white);
}

body.tz-theme.single-product .taza-secondary-actions {
	margin: 0;
}

.tz-admin-note {
	margin: 12px 0 0;
	padding: 10px 14px;
	border: 1px dashed var(--tz-rose);
	border-radius: 8px;
	background: var(--tz-rose-light);
	font-size: 13px;
	color: var(--tz-text-2);
}

.tz-theme.single-product .variations {
	margin: 0 0 14px;
}

.tz-theme.single-product .variations th,
.tz-theme.single-product .variations td {
	padding: 6px 0;
	border: 0;
	background: transparent;
}

.tz-theme.single-product .variations label {
	font-weight: 600;
	font-size: 15px;
}

.tz-theme.single-product .variations select {
	min-height: 46px;
	border-radius: 8px;
}

.tz-theme.single-product .woocommerce-variation-price .price {
	color: var(--tz-bordeaux);
	font-size: 28px;
	font-weight: 700;
}

.tz-product__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 8px;
	font-size: 14.5px;
	color: var(--tz-text-2);
}

.tz-product__fav {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.tz-product__fav .tz-fav {
	position: static;
	width: 26px;
	height: 26px;
	background: transparent;
	box-shadow: none;
	color: var(--tz-rose);
}

.tz-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: none;
	color: var(--tz-text-2);
	font-size: 14.5px;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
}

.tz-product__fav:hover,
.tz-share-btn:hover {
	color: var(--tz-bordeaux);
}

.tz-theme.single-product .product_meta {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--tz-border);
	font-size: 12.5px;
	color: var(--tz-text-2);
}

.tz-theme.single-product .product_meta > span {
	display: block;
	margin-bottom: 4px;
}

.tz-theme.single-product .product_meta a {
	color: var(--tz-text-2);
}

/* ---------------------------------------------------------
   6. Colonne services
   --------------------------------------------------------- */

.tz-product-aside {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 16px;
	min-width: 0;
}

.tz-aside-card {
	background: #FFF2F5;
	border: 1px solid #F0DFE4;
	border-radius: 12px;
	padding: 24px;
}

.tz-aside-card .tz-perks {
	gap: 22px;
}

.tz-aside-card .tz-perks li {
	align-items: flex-start;
	gap: 14px;
}

.tz-aside-card .tz-perks__icon {
	background: var(--tz-white);
	width: 46px;
	height: 46px;
	flex-basis: 46px;
	border-radius: 10px;
	color: var(--tz-rose);
}

.tz-aside-card .tz-perks__text {
	font-size: 14.5px;
	padding-top: 2px;
}

.tz-aside-card .tz-perks__text span {
	font-size: 13.5px;
}

/* ---------------------------------------------------------
   7. Onglets
   --------------------------------------------------------- */

.tz-theme.single-product .woocommerce-tabs {
	margin: 56px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.tz-theme.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--tz-border);
	background: transparent;
}

.tz-theme.single-product .woocommerce-tabs ul.tabs::before,
.tz-theme.single-product .woocommerce-tabs ul.tabs::after,
.tz-theme.single-product .woocommerce-tabs ul.tabs li::before,
.tz-theme.single-product .woocommerce-tabs ul.tabs li::after {
	content: none;
	display: none;
}

.tz-theme.single-product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.tz-theme.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--tz-text-2);
	border-bottom: 2px solid transparent;
	text-shadow: none;
}

.tz-theme.single-product .woocommerce-tabs ul.tabs li.active a,
.tz-theme.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--tz-bordeaux);
	border-bottom-color: var(--tz-bordeaux);
	font-weight: 700;
}

.tz-theme.single-product .woocommerce-tabs .panel {
	max-width: 100%;
	margin: 0;
	font-size: 15.5px;
	color: var(--tz-text);
}

/* ---------------------------------------------------------
   8. Description éditoriale
   --------------------------------------------------------- */

.tz-desc {
	display: grid;
	gap: 50px;
	align-items: start;
}

.tz-desc.has-media {
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
}

.tz-desc__text {
	color: var(--tz-text-2);
	line-height: 1.75;
}

.tz-desc__text h2 {
	font-size: clamp(22px, 2.2vw, 27px);
	margin: 0 0 16px;
	color: var(--tz-text);
}

.tz-desc__text p {
	margin: 0 0 14px;
}

.tz-desc__text h3 {
	font-size: 20px;
	margin: 26px 0 12px;
	color: var(--tz-text);
}

.tz-desc__text ul,
.tz-desc__text ol {
	margin: 0 0 16px;
	padding-left: 20px;
}

.tz-desc__text li {
	margin-bottom: 6px;
}

.tz-desc__media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.tz-theme.single-product .shop_attributes {
	border: 1px solid var(--tz-border);
	border-radius: 12px;
	overflow: hidden;
	max-width: 720px;
	border-collapse: collapse;
}

.tz-theme.single-product .shop_attributes th,
.tz-theme.single-product .shop_attributes td {
	padding: 12px 16px;
	font-size: 14.5px;
	border-bottom: 1px solid var(--tz-border);
}

.tz-theme.single-product .shop_attributes th {
	font-family: var(--tz-font-body);
	background: var(--tz-rose-light);
	width: 34%;
	text-align: left;
}

.tz-perks--wide {
	max-width: 620px;
}

/* ---------------------------------------------------------
   9. Notes olfactives
   --------------------------------------------------------- */

.tz-notes {
	margin-top: 36px;
}

.tz-notes h3 {
	font-size: 22px;
	margin-bottom: 20px;
	color: var(--tz-text);
}

.tz-notes__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.tz-notes__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.tz-notes__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 10px;
	background: var(--tz-rose-light);
	color: var(--tz-rose);
}

.tz-notes__label {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: var(--tz-text);
	margin-bottom: 2px;
}

.tz-notes__value {
	display: block;
	font-size: 14px;
	color: var(--tz-text-2);
	line-height: 1.5;
}

/* ---------------------------------------------------------
   10. Produits similaires
   --------------------------------------------------------- */

.tz-theme.single-product .taza-related,
.tz-theme.single-product .up-sells {
	margin-top: 60px;
}

.tz-theme.single-product .taza-related .tz-section-head,
.tz-theme.single-product .tz-reviews-preview .tz-section-head {
	margin: 0 0 22px;
}

.tz-theme.single-product .taza-related ul.products {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.tz-theme.single-product .taza-related ul.products li.product .button {
	margin-top: auto;
}

/* ---------------------------------------------------------
   11. Avis clients
   --------------------------------------------------------- */

.tz-reviews-preview {
	margin: 60px 0 72px;
}

.tz-reviews-preview__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.tz-review-card {
	background: var(--tz-rose-light);
	border: 1px solid var(--tz-border);
	border-radius: 12px;
	padding: 24px;
}

.tz-review-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.tz-review-card__avatar {
	border-radius: 999px;
	width: 52px;
	height: 52px;
}

.tz-review-card__author {
	margin: 0 0 4px;
	font-weight: 700;
	font-size: 15px;
}

.tz-review-card .star-rating {
	color: var(--tz-star);
	font-size: 14px;
	float: none;
}

.tz-review-card__text {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--tz-text);
	line-height: 1.6;
}

.tz-review-card__date {
	margin: 0;
	font-size: 12.5px;
	color: var(--tz-text-2);
}

.tz-reviews-empty {
	margin: 0;
	padding: 26px;
	border: 1px dashed var(--tz-border);
	border-radius: 12px;
	background: var(--tz-rose-light);
	color: var(--tz-text-2);
	font-size: 15px;
	text-align: center;
}

/* Onglet avis ---------------------------------------------------------- */

.tz-theme.single-product #reviews .commentlist {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 0 0 32px;
	padding: 0;
}

.tz-theme.single-product #reviews .commentlist li {
	margin: 0;
}

.tz-theme.single-product #reviews .comment_container {
	display: flex;
	gap: 14px;
	background: var(--tz-white);
	border: 1px solid var(--tz-border);
	border-radius: 12px;
	padding: 22px;
}

.tz-theme.single-product #reviews .comment_container img.avatar {
	position: static;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	margin: 0;
	flex: 0 0 52px;
}

.tz-theme.single-product #reviews .comment-text {
	margin: 0;
	border: 0;
	padding: 0;
	width: 100%;
}

.tz-theme.single-product #reviews .woocommerce-review__author {
	font-weight: 700;
	font-size: 15px;
}

.tz-review__city {
	color: var(--tz-text-2);
	font-size: 13.5px;
	font-weight: 400;
}

.tz-review__city::before {
	content: "·";
	margin: 0 6px;
	color: var(--tz-rose);
}

.tz-theme.single-product #reviews .woocommerce-review__published-date {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--tz-text-2);
}

.tz-theme.single-product #reviews .description p {
	font-size: 15px;
	color: var(--tz-text);
	margin: 8px 0 0;
}

.tz-theme.single-product #review_form_wrapper {
	background: var(--tz-white);
	border: 1px solid var(--tz-border);
	border-radius: 12px;
	padding: 26px;
	max-width: 760px;
}

.tz-theme.single-product #review_form_wrapper .comment-reply-title {
	font-family: var(--tz-font-title);
	font-size: 21px;
	display: block;
	margin-bottom: 16px;
}

.tz-optional {
	color: var(--tz-text-2);
	font-weight: 400;
	font-size: 13px;
}

.tz-theme.single-product .woocommerce-noreviews {
	background: var(--tz-rose-light);
	border-radius: 8px;
	padding: 16px 18px;
	color: var(--tz-text-2);
}
