/* Shrimp Products — slider de produse recomandate */
.shrimp-prod-slider {
	--shrimp-accent: #fd5631;
	max-width: 1300px;
	margin: 0 auto;
}

/* Rand sus: titlu in stanga, sageti in dreapta (ca la sectiunea de pe pagina produs) */
.shrimp-prod-slider__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
}

.shrimp-prod-slider__title {
	text-align: left;
	margin: 0;
	font-size: 2.6rem;
}

.shrimp-prod-slider__track {
	width: 100%;
	padding: 6px 4px 12px;
}

/* slide-uri de inaltime egala */
.shrimp-prod-slider__track .swiper-wrapper {
	align-items: stretch;
}

.shrimp-prod-slider__track .swiper-slide {
	height: auto !important;
	display: flex;
}

/* ---- Card produs (stil curat: doar imagine + titlu + pret) ---- */
.shrimp-prod {
	background: transparent;
	border: none;
	border-radius: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.shrimp-prod__media {
	position: relative;
	background: #f6f6f6;
	overflow: hidden;
}

.shrimp-prod__imglink {
	display: block;
}

.shrimp-prod__imglink img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.shrimp-prod__tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--shrimp-accent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	padding: 6px 10px;
	border-radius: 2px;
}

.shrimp-prod__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 12px 6px;
	text-align: center;
	flex: 1 1 auto;
}

.shrimp-prod__rating {
	display: flex;
	justify-content: center;
	min-height: 18px;
}

.shrimp-prod__rating .star-rating {
	margin: 0 auto;
	font-size: 0.85rem;
}

.shrimp-prod__title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.35;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: #1c1c1c;
	text-decoration: none;
	display: block;
}

.shrimp-prod__title:hover {
	color: var(--shrimp-accent);
}

.shrimp-prod__price {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--shrimp-accent);
}

.shrimp-prod__price .amount {
	color: var(--shrimp-accent);
}

.shrimp-prod__price del {
	opacity: 0.5;
	font-weight: 400;
	margin-right: 6px;
}

.shrimp-prod__price ins {
	text-decoration: none;
	color: var(--shrimp-accent);
}

.shrimp-prod__cart {
	margin-top: 4px;
}

.shrimp-prod__cart .button,
.shrimp-prod__cart a.button {
	display: inline-block;
	background: var(--shrimp-accent);
	color: #fff;
	border: none;
	border-radius: 0;
	padding: 9px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: filter 0.2s ease;
}

.shrimp-prod__cart .button:hover,
.shrimp-prod__cart a.button:hover {
	filter: brightness(0.92);
	color: #fff;
}

.shrimp-prod__cart .added_to_cart {
	display: block;
	margin-top: 6px;
	font-size: 0.8rem;
	text-decoration: underline;
}

/* ---- Sageti (stilul nativ al temei: .slider-arrow), aliniate dreapta in randul de sus.
   Putin mai mici decat marimea implicita a temei. ---- */
.shrimp-prod-slider__nav {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
	flex: 0 0 auto;
}
.shrimp-prod-slider__nav .slider-arrow {
	transform: scale(0.8);
	transform-origin: center;
}
.shrimp-prod-slider__nav .slider-arrow.slider-prev {
	transform: scale(0.8) rotateY(180deg);
}

/* ---- Tableta ---- */
@media (max-width: 991px) {
	.shrimp-prod-slider__head {
		margin-bottom: 22px;
	}
	.shrimp-prod-slider__title {
		font-size: 1.9rem;
	}
	.shrimp-prod-slider__nav {
		gap: 16px;
	}
}

/* ---- Mobil ---- */
@media (max-width: 575px) {
	.shrimp-prod-slider__head {
		gap: 10px;
		margin-bottom: 18px;
	}
	.shrimp-prod-slider__title {
		font-size: 1.5rem;
		line-height: 1.25;
	}
	/* Sageti putin mai mici (ca pe restul mobilului) si APROPIATE: cutia temei e
	   lata (75px) si lasa gol intre ele, deci le apropiem cu margin negativ. */
	.shrimp-prod-slider__nav {
		gap: 0;
	}
	.shrimp-prod-slider__nav .slider-arrow {
		transform: scale(0.66);
		transform-origin: center;
	}
	.shrimp-prod-slider__nav .slider-arrow.slider-prev {
		transform: scale(0.66) rotateY(180deg);
	}
	.shrimp-prod-slider__nav .slider-arrow.slider-next {
		margin-left: -28px;
	}
}
