body {
	overflow-x: hidden;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	background: #c5b8b846;
}


.navbar .nav {
	padding: 8px;
	border-radius: 10px;
}

.navbar {
	position: fixed;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 1;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.navbar .nav-link {
	position: relative;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s ease;
	color: white;

}

/* Animate links when page loads */
.navbar .nav-link.show {
	opacity: 1;
	transform: translateY(0);
}

/* Hover effect */
.navbar .nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #ff9900;
	transition: width 0.2s ease;
}

.navbar .nav-link:hover::after {
	width: 100%;
}

.navbar .nav-link:hover {
	color: #ff8800;
}

/* Overlay Navbar */
.overlay-navbar {
	left: 0;
	transform: translateX(-100%) scale(0.95);
	opacity: 0;
	transition: all 0.45s cubic-bezier(.25, .8, .25, 1);
}

/* Open state */
.overlay-navbar.open {
	transform: translateX(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

.d-none .icon-area {
	font-size: 20px;
	color: white;
}

/* Backdrop */
.overlay-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease-in-out;
	z-index: 1050;
}

.overlay-backdrop.show {
	opacity: 1;
	visibility: visible;
}

/* Overlay content */
.overlay-navbar .overlay-content {
	padding: 1rem 1rem;
}

.overlay-navbar .nav-link {
	display: block;
	color: black;
	font-size: 1.1rem;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s ease;
}

/* Animate links when overlay opens */
.overlay-navbar.open .nav-link {
	opacity: 1;
	transform: translateX(0);
}

/* Optional hover effect */
.overlay-navbar .nav-link:hover {
	content: '';
	position: relative;
	background: #f1a32e;
	transition: width 0.3s ease;
	border-radius: 5px;
}


/* Center logo on small screen */
@media (max-width: 991px) {
	.navbar-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}


/* Overlay Base */
.overlay {
	position: fixed;
	top: 160px;
	height: 100vh;
	width: 80vw;
	max-width: 350px;
	background: #fff;
	z-index: 1055;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
	transform: translateX(-100%) scale(0.95);
	opacity: 0;
	transition: all 0.45s cubic-bezier(.25, .8, .25, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	pointer-events: none;
}

/* Navbar overlay (LEFT) */
.overlay-navbar {
	left: 0;
}

/* Open state */
.overlay.open.overlay-navbar {
	transform: translateX(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

.overlay.open.overlay-cart {
	transform: translateX(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

/* Overlay backdrop */
.overlay-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.overlay-backdrop.show {
	opacity: 1;
	visibility: visible;
}

.icon-area {
	cursor: pointer;
	position: relative;
}

/* Hide side overlays on large screens */
@media(min-width: 992px) {

	.overlay-navbar,
	.overlay-cart {
		display: none !important;
	}
}


@keyframes bounce {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-6px);
	}
}

.btn-continue {
	min-width: 200px;
	font-weight: 600;
	font-size: 1rem;
	background: #222;
	color: #fff;
	border-radius: 6px;
	padding: 11px 0;
	transition: background 0.25s ease;
}

.btn-continue:hover {
	background: #444;
	color: #fff;
}



/* Carousel custom */
/* .carousel-img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	border-radius: 10px;
} */

@media (max-width: 768px) {
	.carousel-img {
		height: 40vh;

	}
}

@media (max-width: 480px) {
	.carousel-img {
		height: 30vh;

	}
}

h2 {
	font-family: 'Montserrat', 'Arial', sans-serif;
}

.btn-outline-dark {
	font-weight: 500;
	border-radius: 2px;
	background: #d4af37;
	border-radius: 20px;
	color: white;
}

.btn-outline-dark:hover {
	background-color: #000;
}

.brands-slider {
	will-change: transform;
	transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
	white-space: nowrap;
}

.brand-slide {
	display: inline-block;
	min-width: 150px;
	text-align: center;
}

@media (max-width: 600px) {
	.brands-slider span {
		font-size: 1.1rem;
		min-width: 120px;
	}
}


/* Footer Styling */
.footer-section {
	background: #111;
	color: #f1f1f1;
	padding: 60px 20px 30px;
	font-family: "Poppins", sans-serif;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-box h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	position: relative;
}

.footer-box h3::after {
	content: "";
	width: 50px;
	height: 2px;
	background: #d4af37;
	display: block;
	margin-top: 5px;
	border-radius: 2px;
}

.footer-box p,
.footer-box ul {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #ccc;
}

.footer-box ul {
	list-style: none;
	padding: 0;
}

.footer-box ul li {
	margin-bottom: 10px;
}

.footer-box ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-box ul li a:hover {
	color: #d4af37;
}

.social-links a {
	display: inline-block;
	margin-right: 10px;
	font-size: 25px;
	color: #ccc;
	transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
	color: #d4af37;
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #333;
	padding-top: 15px;
	font-size: 0.9rem;
	color: #999;
}

/* Footer Fade-Up Animation */
.footer-box {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.footer-box.show {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media(max-width: 768px) {
	.footer-grid {
		gap: 20px;
	}

	.footer-box h3 {
		font-size: 1.2rem;
	}
}

@media(max-width: 480px) {
	.footer-section {
		padding: 40px 15px 20px;
	}

	.footer-box h3 {
		font-size: 1.1rem;
	}

	.footer-bottom {
		font-size: 0.85rem;
	}
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	/* padding: 20px 10px; */
	text-align: center;
}

.feature {
	background: transparent;
	border: none;
	border-radius: 15px;
	padding: 20px 10px;
	margin-top: 20px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	opacity: 0;
	transform: translateY(40px);
	animation: fadeInUp 1s forwards;
	box-shadow: 0 8px 20px 10px rgba(9, 9, 9, 0.14);
	position: relative;
	overflow: hidden;
}

.feature:nth-child(1) {
	animation-delay: 0.2s;
}

.feature:nth-child(2) {
	animation-delay: 0.4s;
}

.feature:nth-child(3) {
	animation-delay: 0.6s;
}

.feature:nth-child(4) {
	animation-delay: 0.8s;
}

/* Hover effect with golden glow */
.feature:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 12px 35px rgba(7, 7, 7, 0.6);
}

/* Golden outline glow effect */
.feature::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 15px;
	border: 2px solid rgba(9, 9, 9, 0.157);
	box-shadow: 0 0 20px rgba(15, 14, 14, 0.7);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.feature:hover::after {
	opacity: 1;
}

.feature i {
	font-size: 2rem;
	color: #FFD700;
	transition: transform 0.4s ease, color 0.4s ease;
	display: inline-block;
}

.feature:hover i {
	color: #090909d7;
	animation: pulseBounce 0.6s ease;
}

/* Pulse + bounce animation */
@keyframes pulseBounce {
	0% {
		transform: scale(1) translateY(0);
	}

	30% {
		transform: scale(1.2) translateY(-5px);
	}

	50% {
		transform: scale(0.9) translateY(3px);
	}

	70% {
		transform: scale(1.1) translateY(-3px);
	}

	100% {
		transform: scale(1) translateY(0);
	}
}


.feature:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 10px 10px rgba(10, 10, 10, 0.291);
	/* stronger shadow on hover */
}

.feature h4 {
	font-size: 1.3rem;
	color: #FFD700;
	margin-bottom: 10px;
}

.feature p {
	font-size: 1rem;
	color: #ccc;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.feature h4 {
		font-size: 1.1rem;
	}

	.feature p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.features {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* 2 columns */
		gap: 12px;
	}

	.feature {
		padding: 12px 8px;
	}

	.feature i {
		font-size: 1.3rem;
	}

	.feature h4 {
		font-size: 0.85rem;
	}

	.feature p {
		font-size: 0.75rem;
	}
}

/* For very small screens: max-width 400px → 2 column grid */
@media (max-width: 400px) {
	.features {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* 2 columns */
		gap: 12px;
	}

	.feature {
		padding: 12px 8px;
	}

	.feature i {
		font-size: 1.3rem;
	}

	.feature h4 {
		font-size: 0.85rem;
	}

	.feature p {
		font-size: 0.75rem;
	}
}

.collections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 30px 20px;
}

.collection {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 400px;
	cursor: pointer;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.collection:hover img {
	transform: scale(1.1);
}

.collection:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.collection-content {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
}

.collection-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

.collection-content p {
	font-size: 14px;
	margin-bottom: 10px;
}

.collection-content .btn {
	background: #d4af37;
	width: 200px;
	color: white;
	padding: 10px 15px;
	border: none;
	cursor: pointer;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.collection-content .btn:hover {
	background: #000;
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.features {}
}


.brands-section {
	text-align: center;
	padding: 80px 20px;
	animation: fadeInUp 1.5s ease-in-out;
}

.brands-section h1 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	color: #FFD700;
}

/* Decorative underline */
.brands-section h1::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	background: #000;
	margin: 10px auto 0;
	border-radius: 2px;
	animation: underlineGrow 1.5s ease-in-out;
}

.brands-section p {
	font-size: 1rem;
	color: #666;
	max-width: 750px;
	margin: auto;
	animation: fadeIn 2s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes underlineGrow {
	from {
		width: 0;
	}

	to {
		width: 70px;
	}
}

/* ---------------------------------------view-btn----------------------------------- */
.view-btn a {
	text-decoration: none;
}

.view-btn {
	background-color: black;
	/* black background */
	color: white;
	/* gold text */
	padding: 10px 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}

/* Hover effect */
.view-btn:hover {
	background-color: rgba(250, 246, 10, 0.815);
	/* gold background */
	color: black;
	/* black text */
}

/* <!-- ---------------------------------Product section-------------------------------------------		 --> */
.product-section {
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
	justify-content: center;
	padding: 2vw;
}

.product-card {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.31);
	position: relative;
	width: 280px;
	min-height: 280px;
	overflow: hidden;
	margin: 1vw 0;
	transition: box-shadow 0.2s, border-color 0.2s;
	cursor: pointer;
	border: 1px solid #e1bb44;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

.product-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: transform 0.3s cubic-bezier(0.67, 0, 0.24, 1.01);
}

.product-card {
	perspective: 1000px;
	/* for 3D effect */
	position: relative;
}

.take-a-look-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	background: rgba(27, 27, 27, 0.95);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;

	/* Start folded to the left - "closed" */
	transform-origin: left center;
	transform: rotateY(-90deg);

	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
	z-index: 5;
}

.product-card:hover .take-a-look-overlay,
.product-card.active .take-a-look-overlay {
	opacity: 1;
	pointer-events: auto;
	transform: rotateY(0deg);
	/* Open flat like a page */
}

.take-a-look-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #e1bb44;
	letter-spacing: 1px;
	margin-bottom: 100px;
	z-index: 2;
	text-align: center;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInMoveDown 0.5s forwards 0.3s;
}

.take-a-look-btn {
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 7px;
	font-weight: bold;
	font-size: 1rem;
	letter-spacing: 1px;
	margin-top: 18px;
	transition: background 0.18s, color 0.18s, border 0.18s;
	z-index: 2;

	/* Animation */
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInMoveUp 0.5s forwards 0.6s;
	cursor: pointer;
}

@keyframes fadeInMoveDown {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInMoveUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.product-card:hover img {
	transform: scale(1.08) rotate(-2deg);
	filter: brightness(0.93);
}


.heading-section {
	text-align: center;
	/* margin: 2rem 0 3rem; */
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1.2s ease-out forwards;
	/* background: #000; */
	padding: 2rem 1rem;
	border-radius: 12px;
}

.heading-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
	/* Gold gradient */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 2px;
	/* text-transform: uppercase; */
}

.heading-section p {
	font-size: 1.1rem;
	color: black;
	/* Gold color */
	font-weight: 400;
	opacity: 0;
	animation: fadeIn 1.5s ease-out forwards;
	animation-delay: 0.6s;
}

/* Animation Keyframes */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.heading-section h2 {
		font-size: 2rem;
	}

	.heading-section p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.heading-section h2 {
		font-size: 1.6rem;
	}

	.heading-section p {
		font-size: 0.9rem;
	}
}


/* --------------------------------------------slide images --------------------------------- */

/* Category Section */
.category-carousel-section {
	/* background-color: #fcfbff; */
	/* border-radius: 10px; */
	padding: 15px;
	margin: 10px auto;
	max-width: 1200px;
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
	/* border: 1px solid #e0e0f0; */
}

.category-card {
	text-align: center;
	text-decoration: none;
	color: #333;
	display: block;
	margin: 0 auto;
}

.category-img-wrapper {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background-color: #f0f0f5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease-in-out;
}

.category-img-wrapper:hover {
	transform: translateY(-5px);
}

.category-img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.category-title {
	margin-top: 10px;
	font-size: 0.85rem;
	font-weight: 500;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* --- HORIZONTAL SCROLLING FIX (For one-line display) --- */
#categoryScrollArea {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 15px;
	cursor: grab;
	/* Change cursor to indicate dragability */
	user-select: none;
	/* Prevent text selection while dragging */
}

/* Dragging state cursor */
#categoryScrollArea:active {
	cursor: grabbing;
}

/* Hide Scrollbar */
#categoryScrollArea::-webkit-scrollbar {
	display: none;
}

#categoryScrollArea {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.category-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
}

.category-col {
	flex-shrink: 0;
	width: 150px;
}

/* Responsive Text */
@media (max-width: 575.98px) {
	.category-title {
		font-size: 0.75rem;
	}
}

/* -------------------------------------------------------------------------------/ */

/* Product Features Section Styles */

.info-bar {
	display: flex;
	background: #f5f2fa;
	padding: 24px 0;
	justify-content: center;
	align-items: center;
	gap: 45px;
	flex-wrap: wrap;

}

.info-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.7s forwards;
}

.info-item:nth-child(1) {
	animation-delay: 0.1s;
}

.info-item:nth-child(2) {
	animation-delay: 0.25s;
}

.info-item:nth-child(3) {
	animation-delay: 0.4s;
}

.info-item:nth-child(4) {
	animation-delay: 0.55s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 22px;
	font-weight: bold;
	border-radius: 50%;
	background: #e0e8f3;
	color: #46306b;
	transition: transform 0.3s, box-shadow 0.3s;
}

.info-item.blue .icon {
	background: #e0e8f3;
}

.info-item.pink .icon {
	background: #f8e0e0;
}

.info-item.green .icon {
	background: #edfbe3;
}

.info-item.yellow .icon {
	background: #fdf6d5;
}

.info-item:hover .icon {
	transform: scale(1.15) rotate(-10deg);
	box-shadow: 0 4px 16px rgba(57, 36, 90, 0.14);
}

.text {
	color: #39245a;
	font-size: 18px;
	font-family: Arial, sans-serif;
	font-weight: 500;
}

@media (max-width: 800px) {
	.info-bar {
		gap: 24px;
	}

	.info-item .text {
		font-size: 16px;
	}
}

@media (max-width: 500px) {
	.info-bar {
		flex-direction: column;
		gap: 14px;
		padding: 16px 0;
	}

	.info-item {
		margin-bottom: 0;
		justify-content: flex-start;
	}

	.icon {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.text {
		font-size: 15px;
	}
}


h2 {
	text-align: center;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	font-size: 2rem;
	font-weight: 600;
	color: orange;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 10px;
	position: relative;
	animation: fadeInUp 1s ease-in-out;
}

/* Add a golden underline */
h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: gold;
	margin: 10px auto 0;
	border-radius: 2px;
	animation: growLine 1s ease-in-out;
}

/* Text fade-up animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Underline grow animation */
@keyframes growLine {
	from {
		width: 0;
		opacity: 0;
	}

	to {
		width: 80px;
		opacity: 1;
	}
}

/* Responsive font size */
@media (max-width: 600px) {
	h2 {
		font-size: 1.5rem;
		letter-spacing: 1px;
	}
}


/* --------------------------------------jewelry details-------------------------------------------- */

/* ------------------ MODAL CUSTOMIZATION ------------------ */


/* .modal {
		margin: 20px;
	} */

.custom-modal-size {
	max-width: 700px;
	width: 90%;
	/* Responsive width */
}

.product-modal-content {
	/* border-radius: 0; */
	/* margin: 20px; */

	/* Square edges */
	margin-top: 120px;
}

.image-placeholder {
	height: 400px;
	margin-top: 15px;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
	/* This is good for cropping if the image is huge */
}


.image-placeholder img {
	height: 400px;
	object-fit: cover;
}


.modal-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1060;

}


/* ------------------ PRODUCT DETAILS STYLING ------------------ */
.product-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
}

.product-price {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.product-description {
	line-height: 1.5;
	margin-bottom: 1rem;
	font-size: 0.9rem;

}

.add-to-cart-btn {
	background-color: #8C9F7E;
	color: white;
	font-weight: 600;
	padding: 0.6rem;
	/* Smaller padding */
	border: none;
	border-radius: 0;
	letter-spacing: 1px;
	transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
	background-color: #778B6A;
	color: white;
}


@media (max-width: 575.98px) {
	.image-placeholder {
		height: 300px;

	}

	.features div {
		margin-right: 1.5rem !important;

	}
}


/* <!-- ----------------------------------------Start card ---------------------------------------- --> */

.collections-container {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	padding: 1rem;
	margin-top: 200px;
}

.collection-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(20, 20, 20, 0.466);
	overflow: hidden;
	width: 340px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card img {
	width: 100%;
	/* max-height: 220px; */
	object-fit: cover;
	border-bottom: 1px solid #eee;
	transition: transform 0.5s cubic-bezier(.27, 1.12, .84, .98);
}

/* Animation: Zoom-in left */
.zoom-in-left img {
	opacity: 0;
	transform: scale(0.82);
	animation: zoomLeft 1.1s forwards;
}

@keyframes zoomLeft {
	to {
		opacity: 1;
		transform: scale(1.05);
	}
}

/* Animation: Zoom-in right */
.zoom-in-right img {
	opacity: 0;
	transform: scale(0.85);
	animation: zoomRight 1.1s forwards;
	animation-delay: 0.3s;
}

@keyframes zoomRight {
	to {
		opacity: 1;
		transform: scale(1.05);
	}
}

.card-info {
	padding: 1.7rem 1.2rem;
	text-align: center;
}

.collection-card h2 {
	margin: 0 0 0.7rem 0;
	font-size: 1.6rem;
	color: #222;
	letter-spacing: 0.03em;
}

.collection-card.lumina h2 {
	color: #ad9853;
	letter-spacing: 0.07em;
}

/* Smaller height, aligned top for middle image */
.collection-card.lumina {
	/* object-position: top center; */
	margin-top: -80px;
	margin-bottom: 80px;

}


.collection-card.boldgold h2 {
	color: #ad9853;
}

.collection-card.boldgold p {
	margin: 0.6rem 0 0 0;
	font-size: 1.08rem;
	color: #222;
}

.collection-card:hover {
	transform: translateY(-8px) scale(1.035);
	box-shadow: 0 10px 36px rgba(44, 37, 16, 0.20);
}

.collection-card:hover img {
	transform: scale(1.07) rotate(-2deg);
}

.button-row {
	text-align: center;
	margin: 2.3rem 0 1rem 0;
	margin-top: -40px;
}

#browseBtn {
	padding: 13px 38px;
	background: linear-gradient(90deg, #f3cf4f 0%, #f3d782 100%);
	color: #111111;
	font-size: 1.18rem;
	border-radius: 28px;
	border: none;
	box-shadow: 0 6px 24px rgba(44, 37, 16, 0.12);
	cursor: pointer;
	transition: background 0.3s, box-shadow 0.35s;
}

#browseBtn:hover {
	background: linear-gradient(90deg, #efd887 0%, #ad9853 100%);
	box-shadow: 0 10px 36px rgba(44, 37, 16, 0.23);
}



@media (max-width: 760px) {
	.collection-card.lumina {
		object-position: top center;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.button-row {
		text-align: center;
		margin: 2.3rem 0 1rem 0;
		margin-top: 40px
	}
}



@media (max-width: 480px) {
	.collection-card.lumina {
		object-position: top center;
		margin-top: 5px;
		margin-bottom: 5px;
	}
}


/* --------------------------Start carousel-control Previous & Next Button --------------------------------- */
      /* === Carousel Wrapper === */
        .home-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        /* === Make Carousel Full Height === */
        .carousel-inner {
            width: 100%;
            height: 100vh;
           margin-top: 3.5rem;
        }

        .carousel-item {
            position: relative;
            width: 100%;
            height: 100vh;
            background-color: #000;
        }

        /* ✅ Proper Image Styling */
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: inherit;
            /* fills area without distortion */
            object-position: center;
            transition: transform 0.8s ease-in-out;
        }

        /* Optional zoom animation */
        .carousel-item.active img {
            transform: scale(1.02);
        }

        /* === Responsive height adjustments for small screens === */
        @media (max-width: 992px) {

            .carousel-inner,
            .carousel-item {
                height: 65vh;
            }
        }

        @media (max-width: 768px) {

            .carousel-inner,
            .carousel-item {
                height: 55vh;
            }
        }

        @media (max-width: 480px) {

            .carousel-inner,
            .carousel-item {
                height: 55vh;
            }
        }

        /* === Custom Controls === */
        .custom-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            z-index: 10;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .control-btn i {
            color: #333;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .control-btn:hover {
            background: #fff;
            transform: scale(1.1);
        }

        .control-btn:hover i {
            color: #000;
            transform: translateX(-2px);
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        /* === Indicators === */
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background-color: #d4af37;
            transform: scale(1.3);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
        }

        @media (max-width: 768px) {
            .control-btn {
                width: 38px;
                height: 38px;
            }

            .control-btn i {
                font-size: 14px;
            }

            .carousel-indicators [data-bs-target] {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-control-prev {
                left: 10px;
            }

            .carousel-control-next {
                right: 10px;
            }

            .carousel-indicators [data-bs-target] {
                width: 8px;
                height: 8px;
                margin: 3px;
            }
        }

/* --------------------------End carousel-control Previous & Next Button --------------------------------- */