/* ==========================================================================
   Silky Hair Care Guide - Elementor Widget Styles
   Pixel-perfect design matching luxury salon aesthetic
   ========================================================================== */

.silky-care-guide-wrapper {
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	color: #2b2b2b;
	background: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

.silky-cg-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.silky-cg-hero {
	position: relative;
	background: radial-gradient(circle at 85% 30%, #fdf0f4 0%, #fff7f9 50%, #ffffff 100%);
	padding: 60px 0 0px;
	overflow: hidden;
}

.silky-cg-hero-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.silky-cg-hero-content {
	flex: 1 1 520px;
	max-width: 580px;
}

.silky-cg-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #df4d85;
	margin-bottom: 16px;
}

.silky-cg-badge svg {
	width: 15px;
	height: 15px;
	fill: #df4d85;
}

.silky-cg-hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	font-weight: 600;
	line-height: 1.15;
	color: #1a1a1a;
	margin: 0 0 16px 0;
}

.silky-cg-hero-title .cursive-pink {
	font-style: italic;
	color: #df4d85;
	font-family: 'Playfair Display', serif;
	font-weight: 500;
}

.silky-cg-heart-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 140px;
	margin: 18px 0 20px;
}

.silky-cg-heart-divider .line {
	flex: 1;
	height: 1px;
	background: #f1b5cc;
}

.silky-cg-heart-divider .heart-icon {
	color: #df4d85;
	font-size: 14px;
	line-height: 1;
}

.silky-cg-hero-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #555555;
	margin-bottom: 30px;
	max-width: 480px;
}

.silky-cg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e2538b;
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 14px 34px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 4px 14px rgba(226, 83, 139, 0.3);
	border: 1px solid #e2538b;
}

.silky-cg-btn:hover {
	background: #c93b72;
	border-color: #c93b72;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(226, 83, 139, 0.45);
}

.silky-cg-hero-image-wrap {
	flex: 1 1 480px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.silky-cg-hero-image-wrap::before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(254, 235, 242, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
	z-index: 1;
}

.silky-cg-hero-model-img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	position: relative;
	z-index: 2;
	object-fit: cover;
	filter: drop-shadow(0 15px 35px rgba(230, 160, 185, 0.35));
}

.silky-cg-sparkle {
	position: absolute;
	color: #e28cb0;
	z-index: 3;
	pointer-events: none;
	animation: pulseSparkle 3s ease-in-out infinite alternate;
}

.silky-cg-sparkle-1 { top: 25%; left: 8%; font-size: 22px; }
.silky-cg-sparkle-2 { bottom: 25%; left: 16%; font-size: 16px; animation-delay: 1.5s; }

@keyframes pulseSparkle {
	0% { opacity: 0.4; transform: scale(0.8); }
	100% { opacity: 1; transform: scale(1.15); }
}

/* --------------------------------------------------------------------------
   2. 9 CARE STEPS SECTION
   -------------------------------------------------------------------------- */
.silky-cg-steps-section {
	padding: 70px 0 50px;
	background: #ffffff;
}

.silky-cg-section-heading {
	text-align: center;
	margin-bottom: 45px;
}

.silky-cg-section-title {
	font-family: 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1a1a1a;
	margin: 0;
}

.silky-cg-section-title span.highlight-pink {
	color: #e2538b;
}

.silky-cg-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.silky-cg-step-card {
	background: #ffffff;
	border: 1px solid #efe6ea;
	border-radius: 12px;
	display: flex;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	min-height: 195px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
}

.silky-cg-step-card:hover {
	transform: translateY(-4px);
	border-color: #e8c0d1;
	box-shadow: 0 10px 25px rgba(226, 83, 139, 0.09);
}

.silky-cg-step-content {
	flex: 1 1 58%;
	padding: 22px 16px 20px 22px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.silky-cg-step-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.silky-cg-step-num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #faeaf0;
	color: #df4d85;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.silky-cg-step-icon {
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2b2b2b;
}

.silky-cg-step-icon svg {
	width: 22px;
	height: 22px;
	stroke: #2b2b2b;
	fill: none;
	stroke-width: 1.6;
}

.silky-cg-step-title {
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #1a1a1a;
	margin: 0 0 10px 0;
}

.silky-cg-step-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.silky-cg-step-list li {
	font-size: 12px;
	line-height: 1.55;
	color: #555555;
	position: relative;
	padding-left: 14px;
	margin-bottom: 6px;
}

.silky-cg-step-list li:last-child {
	margin-bottom: 0;
}

.silky-cg-step-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #888888;
	font-size: 14px;
	line-height: 1.3;
}

.silky-cg-step-img-wrap {
	flex: 0 0 42%;
	position: relative;
	overflow: hidden;
	background: #fdf5f8;
}

.silky-cg-step-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.silky-cg-step-card:hover .silky-cg-step-img {
	transform: scale(1.05);
}

.silky-cg-avoid-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	background: #df4d85;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 3px 8px rgba(223, 77, 133, 0.4);
	z-index: 2;
}

/* --------------------------------------------------------------------------
   3. RECOMMENDED PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.silky-cg-products-section {
	padding: 40px 0 60px;
	background: #ffffff;
}

.silky-cg-products-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	position: relative;
}

.silky-cg-product-card {
	background: #ffffff;
	border: 1px solid #f0e6eb;
	border-radius: 10px;
	padding: 16px 12px 14px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.silky-cg-product-card:hover {
	transform: translateY(-4px);
	border-color: #e5b8cc;
	box-shadow: 0 8px 20px rgba(226, 83, 139, 0.08);
}

.silky-cg-prod-img-box {
	width: 100%;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.silky-cg-prod-img-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.silky-cg-prod-title {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a1a;
	margin: 0 0 6px 0;
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.silky-cg-prod-price {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.silky-cg-prod-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #df4d85 !important;
	border: 1px solid #eab6cb;
	background: #ffffff;
	padding: 8px 6px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.silky-cg-prod-btn svg {
	width: 13px;
	height: 13px;
	fill: #df4d85;
	transition: transform 0.25s ease;
}

.silky-cg-prod-btn:hover {
	background: #df4d85;
	border-color: #df4d85;
	color: #ffffff !important;
}

.silky-cg-prod-btn:hover svg {
	fill: #ffffff;
}

/* --------------------------------------------------------------------------
   4. DO'S & DON'TS + FAQS SECTION (2-COLUMNS)
   -------------------------------------------------------------------------- */
.silky-cg-split-section {
	padding: 30px 0 60px;
	background: #ffffff;
}

.silky-cg-split-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
	align-items: stretch;
}

/* DO'S & DON'TS BOX */
.silky-cg-dos-box {
	background: #fffafa;
	border: 1px solid #f2e2e7;
	border-radius: 12px;
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.silky-cg-dos-heading {
	text-align: center;
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1a1a1a;
	margin: 0 0 24px 0;
}

.silky-cg-dos-content-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.silky-cg-dos-col {
	flex: 1 1 35%;
}

.silky-cg-dos-col-title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 16px 0;
}

.silky-cg-dos-col-title.green {
	color: #2e8b57;
}

.silky-cg-dos-col-title.pink {
	color: #df4d85;
}

.silky-cg-dos-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.silky-cg-dos-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11.5px;
	line-height: 1.5;
	color: #444;
	margin-bottom: 12px;
}

.silky-cg-dos-list li:last-child {
	margin-bottom: 0;
}

.silky-cg-dos-list .icon-check {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #eafaf1;
	color: #27ae60;
	border: 1px solid #a3e4d7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.silky-cg-dos-list .icon-cross {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fdf2e9;
	color: #e05688;
	border: 1px solid #f5cba7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.silky-cg-dos-center-img {
	flex: 0 0 28%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.silky-cg-dos-center-img img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* FAQS BOX */
.silky-cg-faq-box {
	background: #fff;
	border: 1px solid #f2e2e7;
	border-radius: 12px;
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
}

.silky-cg-faq-heading {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #1a1a1a;
	margin: 0 0 20px 0;
	text-align: left;
}

.silky-cg-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.silky-cg-faq-item {
	border: 1px solid #eee1e6;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.25s ease;
}

.silky-cg-faq-item.active {
	border-color: #e5b6ca;
	box-shadow: 0 4px 12px rgba(226, 83, 139, 0.06);
}

.silky-cg-faq-question {
	width: 100%;
	padding: 14px 18px;
	background: transparent;
	border: none;
	outline: none;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: #2b2b2b;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	gap: 12px;
	font-family: inherit;
	transition: color 0.2s ease;
}

.silky-cg-faq-question:hover {
	color: #df4d85;
}

.silky-cg-faq-toggle-icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #666;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.silky-cg-faq-item.active .silky-cg-faq-toggle-icon {
	transform: rotate(45deg);
	color: #df4d85;
}

.silky-cg-faq-answer {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	font-size: 12.5px;
	line-height: 1.6;
	color: #666;
}

.silky-cg-faq-item.active .silky-cg-faq-answer {
	padding: 0 18px 16px;
	max-height: 300px;
}

/* --------------------------------------------------------------------------
   5. BOTTOM LONGEVITY BANNER
   -------------------------------------------------------------------------- */
.silky-cg-bottom-banner {
	margin: 20px auto 60px;
	background: linear-gradient(135deg, #fff7f9 0%, #faedf2 50%, #fff6f8 100%);
	border-radius: 16px;
	border: 1px solid #f3dbe4;
	overflow: hidden;
	position: relative;
	padding: 40px 45px;
}

.silky-cg-bottom-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.silky-cg-bottom-model-col {
	flex: 0 0 240px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.silky-cg-bottom-model-img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	filter: drop-shadow(0 10px 20px rgba(226, 83, 139, 0.15));
}

.silky-cg-bottom-content-col {
	flex: 1 1 420px;
	text-align: center;
}

.silky-cg-bottom-title {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.25;
	margin: 0 0 12px 0;
}

.silky-cg-bottom-title .pink-cursive {
	font-style: italic;
	color: #df4d85;
	font-weight: 500;
}

.silky-cg-bottom-desc {
	font-size: 14px;
	color: #555555;
	line-height: 1.6;
	margin: 0 auto 24px;
	max-width: 440px;
}

.silky-cg-bottom-badges-col {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.silky-cg-feature-badge-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid rgba(235, 190, 205, 0.5);
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.silky-cg-feature-badge-item:hover {
	background: #ffffff;
	transform: translateX(4px);
	border-color: #df4d85;
	box-shadow: 0 4px 12px rgba(226, 83, 139, 0.12);
}

.silky-cg-feature-badge-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #faeaf0;
	color: #df4d85;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.silky-cg-feature-badge-text {
	font-size: 13px;
	font-weight: 600;
	color: #2b2b2b;
	line-height: 1.2;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.silky-cg-hero-title {
		font-size: 40px;
	}
	.silky-cg-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.silky-cg-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.silky-cg-split-grid {
		grid-template-columns: 1fr;
	}
	.silky-cg-bottom-grid {
		flex-direction: column;
		text-align: center;
	}
	.silky-cg-bottom-badges-col {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.silky-cg-hero-grid {
		flex-direction: column-reverse;
		text-align: center;
	}
	.silky-cg-heart-divider {
		margin: 18px auto 20px;
	}
	.silky-cg-hero-desc {
		margin-left: auto;
		margin-right: auto;
	}
	.silky-cg-steps-grid {
		grid-template-columns: 1fr;
	}
	.silky-cg-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.silky-cg-dos-content-wrap {
		flex-direction: column;
		gap: 24px;
	}
	.silky-cg-dos-col {
		width: 100%;
	}
	.silky-cg-bottom-banner {
		padding: 28px 20px;
	}
	.silky-cg-bottom-title {
		font-size: 28px;
	}
}
