/**
 * Single Shisha Menu Styles
 *
 * @package Rezivoo
 */

/* Title Area */
.shisha-single-title-area {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shisha-single-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

/* Product Section */
.shisha-single-product-section {
	margin-top: -280px;
	position: relative;
	z-index: 2;
	padding-top: 30px;
	padding-bottom: 30px;
}

.shisha-single-product-inner {
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: stretch;
	min-height: 560px;
}

/* Image Section */
.shisha-single-image-section {
	width: 40%;
	flex-shrink: 0;
}

.shisha-single-image-wrapper {
	position: sticky;
	top: 90px;
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
}

.shisha-single-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* Content Section */
.shisha-single-content-section {
	width: 60%;
	display: flex;
	flex-direction: column;
	gap: 60px;
	min-height: 500px;
}

/* Title & Price */
.shisha-single-title-price {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
}

.shisha-single-title {
	font-size: clamp(3rem, 2.5385rem + 2.0513vw, 4rem);
	font-weight: 700;
	margin: 0 0 20px 0;
	-webkit-text-stroke: 0.5px var(--rezivoo-primary-color);
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	color: var(--rezivoo-text-color);
}

.shisha-single-price-section {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.shisha-price-label {
	font-size: clamp(1.4rem, 1.3538rem + 0.2051vw, 1.5rem) !important; /* Title 6 */
	font-weight: 700;
	color: var(--rezivoo-text-color, #000000);
	margin: 0;
}

.shisha-price-value {
	font-size: clamp(2.4rem, 2.1231rem + 1.2308vw, 3rem);
	font-weight: 700;
	color: var(--rezivoo-primary-color);
	margin: 0;
}

.shisha-single-categories {
	margin-top: 10px;
}

.shisha-categories-text {
	font-size: clamp(1.8rem, 1.7077rem + 0.4103vw, 2rem);
	font-weight: 600;
	color: var(--rezivoo-primary-color);
}

/* Details Area */
.shisha-single-details-area {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.shisha-single-details-section,
.shisha-single-tobaccos-section,
.shisha-single-extras-section {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.shisha-section-divider {
	width: 100%;
	height: 1px;
	background-color: var(--rezivoo-secondary-color);
	margin: 20px 0;
	opacity: 0.3;
}

.shisha-section-title {
	font-size: clamp(1.8rem, 1.7077rem + 0.4103vw, 2rem);
	font-weight: 600;
	color: var(--rezivoo-primary-color);
	margin: 0 0 10px 0;
}

.shisha-details-content {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--rezivoo-text-color);
}

/* Tobaccos List */
.shisha-tobaccos-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.shisha-tobacco-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.shisha-tobacco-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.shisha-tobacco-info {
	flex: 1;
}

.shisha-tobacco-brand {
	font-size: 0.875rem !important; /* Same as aromas */
	font-weight: 700 !important; /* Bold */
	color: var(--rezivoo-text-color);
	margin: 0 0 2px 0;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.3s ease;
}

.shisha-tobacco-brand:hover {
	opacity: 0.7;
	text-decoration: none;
	color: var(--rezivoo-text-color);
}

.shisha-tobacco-name {
	font-size: clamp(1.2rem, 1.1769rem + 0.1026vw, 1.25rem) !important; /* Title 7 - 19.2px to 20px */
	font-weight: 500 !important;
	color: var(--rezivoo-text-color);
	margin: 0 0 2px 0;
}

.shisha-tobacco-aromas {
	font-size: 0.875rem;
	color: var(--rezivoo-secondary-color);
	opacity: 0.8;
	margin: 0;
}

/* Extras List */
.shisha-extras-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.shisha-extra-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.shisha-extra-name {
	font-size: 1rem;
	color: var(--rezivoo-text-color);
}

.shisha-extra-price {
	font-size: 1rem;
	font-weight: 600;
	color: var(--rezivoo-primary-color);
}


/* Mobile Responsive */
@media (max-width: 768px) {
	.shisha-single-title-area {
		min-height: 200px !important; /* Half of 400px */
	}

	.shisha-single-product-section {
		margin-top: -300px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.shisha-single-product-inner {
		flex-direction: column;
		gap: 20px;
	}

	.shisha-single-image-section {
		width: 100%;
	}

	.shisha-single-image-wrapper {
		position: relative;
		top: 0;
		height: 340px;
	}

	.shisha-single-content-section {
		width: 100%;
		gap: 20px;
	}

	.shisha-single-title-price {
		min-height: auto;
	}

	.shisha-single-details-area {
		min-height: auto;
	}

	.shisha-tobaccos-list {
		grid-template-columns: 1fr;
	}
}

