* {
	margin:0;
	padding:0;
}
body{
	margin:0;
	padding:0;
	font-family: "Poppins", sans-serif;
}
.font-marcellus{
	font-family: 'Marcellus', serif;
}
.font-poppins{
	font-family: "Poppins", sans-serif;
}
.footer-logo-box img {
    width: 70%;
}
a{
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Marcellus', serif;
}

.topbar{
	background:#fff;
	padding:8px 0;
	border-bottom: 1px solid #f0f0f0;
}
.topbar .row{
	align-items: center;
}
.topbar p{
	margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}
nav.navbar.navbar-expand-lg {
    border-top: 1px solid #777574;
    margin-top: 10px;
    padding-top: 15px;
}
.social-icons{
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}
.social-icon{
	color: #333;
	font-size: 14px;
	transition: color 0.3s ease;
}
.social-icon:hover{
	color: #007bff;
}
header{
	position:absolute;
	width:100%;
	background: #000000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(237, 221, 83, 0) 100%);
	padding: 10px 0 50px 0;
	z-index:99;
}
.header-block01{
	display:flex;
	justify-content:space-between;
	align-items: center;
	padding: 40px 0;
}
.header-logo-section{
	padding: 20px 0;
}

/* Desktop layout - search left, logo center, account/cart right */
@media (min-width: 992px) {
	.header-block01 {
		position: relative;
	}
	
	.searchbar-top {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		flex: 0 0 auto;
	}
	
	.logo-bar {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		flex: 0 0 auto;
	}
	.logo-bar{
		    width: 13%;
	}
	
	.account-bar {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		flex: 0 0 auto;
	}
}

/* Mobile header layout - logo left, icons right */
@media (max-width: 991px) {
	.header-block01 {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	
	.logo-bar {
		order: 1;
		flex: 0 0 auto;
		position: static;
		transform: none;
		width: 28%;
	}
	
	.account-bar {
		order: 2;
		flex: 0 0 auto;
		position: static;
		transform: none;
	}
	
	.header-icons {
		display: flex;
		align-items: center;
		gap: 15px;
	}
}

/* Fullscreen mobile menu */
.fullscreen-menu {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: flex !important;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.fullscreen-menu.show {
	visibility: visible;
	opacity: 1;
}

.fullscreen-menu.collapsing {
	transition: all 0.3s ease;
}

.fullscreen-nav-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.close-menu {
	position: absolute;
	top: 30px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.fullscreen-menu .navbar-nav {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
}

.fullscreen-menu .nav-link {
	color: #fff !important;
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.fullscreen-menu.show .nav-link {
	opacity: 1;
	transform: translateY(0);
}

.fullscreen-menu.show .nav-link:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.show .nav-link:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.show .nav-link:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu.show .nav-link:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu.show .nav-link:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-menu.show .nav-link:nth-child(6) { transition-delay: 0.6s; }
.fullscreen-menu.show .nav-link:nth-child(7) { transition-delay: 0.7s; }

.fullscreen-menu .nav-link:hover {
	color: #f8e7d6 !important;
}

/* Hamburger icon styling */
.navbar-toggler {
	border: none;
	background: none;
	padding: 5px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 24px;
	height: 24px;
}
.search-container{
	position: relative;
	display: flex;
	align-items: center;
}
.search-icon{
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: color 0.3s ease;
}
.search-icon:hover{
	color: #f8e7d6;
}
.search-input{
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	padding: 8px 15px;
	color: #fff;
	outline: none;
	width: 0;
	opacity: 0;
	transition: all 0.3s ease;
	margin-left: 10px;
	position: absolute;
	left: 20px;
}
.search-input::placeholder{
	color: rgba(255, 255, 255, 0.7);
}
.search-input.active{
	width: 200px;
	opacity: 1;
}
.header-icons{
	display: flex;
	gap: 20px;
	align-items: center;
}
.header-icon{
	color: #fff;
	font-size: 18px;
	position: relative;
	transition: color 0.3s ease;
}
.header-icon:hover{
	color: #f8e7d6;
}
.cart-icon{
	position: relative;
}
.cart-count{
	position: absolute;
	top: -8px;
	right: -8px;
	background: #f8e7d6;
	color: #000;
	font-size: 10px;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 10px;
	min-width: 16px;
	text-align: center;
}
ul.navbar-nav {
    gap: 30px;
}
ul.navbar-nav li a{
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}
ul.navbar-nav li a:hover{
	color: #eee;
}
ul.navbar-nav li a.active{
    color: #fff !important;
	font-weight: 600;
}
ul.navbar-nav li a:focus{
	color: #fff 
}
.navbar-expand-lg .navbar-collapse{
	justify-content:center;
}

.hero-banner{
	position:relative;
	padding-top: 300px;
    padding-bottom: 150px;
    text-align: center;
	background-size: cover !important;
    /* background-position: top center !important; */
    background-repeat: no-repeat;
}
.hero-banner::before{
	position:absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: #000000;
	background: linear-gradient(180deg, rgb(0 0 0 / 9%) 0%, rgb(0 0 0 / 23%) 100%);
}
.hero-banner h1{
	font-size: 56px;
}
.hero-banner a {
    border: 2px solid #fff;
    padding: 10px 30px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
	transition: all 0.3s ease;
}

.hero-banner a:hover{
    background: #fff;
    color: #000;
}
.hero-banner p{
	letter-spacing: 2px;
	font-size: 14px;	
	font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.topbar .row {
		flex-direction: column;
		gap: 10px;
	}
	
	.topbar p {
		text-align: center;
		position: relative;
		left: 0%;
        transform: translate(0%, 0%);
	}
	
	.social-icons {
		justify-content: center;
	}
	
	.header-block01 {
		padding: 15px 0;
	}
	
	.search-input.active {
		width: 150px;
	}
	
	.header-icons {
		gap: 15px;
	}
	
	.header-icon {
		font-size: 16px;
	}
	
	ul.navbar-nav {
		gap: 15px;
		text-align: center;
	}
	
	.hero-banner h1 {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.topbar p {
		font-size: 10px;
	}
	
	.social-icon {
		font-size: 12px;
	}
	
	.search-input.active {
		width: 120px;
	}
	
	.header-icons {
		gap: 12px;
	}
	
	.header-icon {
		font-size: 14px;
	}
	
	.cart-count {
		font-size: 8px;
		top: -6px;
		right: -6px;
		min-width: 14px;
	}
	
	.hero-banner h1 {
		font-size: 28px;
	}
	
	.hero-banner p {
		font-size: 12px;
	}
}

/* Product Showcase Section */
.product-showcase {
	padding: 120px 0 80px 0;
	background: #fff;
}

.section-header {
	max-width: 680px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 42px;
	margin-bottom: 20px;
	color: #000;
	position: relative;
	margin-top: 55px;
}
/* .section-header h2::before{
	width: 100px;
    height: 2px;
    background: red;
    transform: rotate(90deg);
    text-align: center;
    position: absolute;
	content: '';
    left: 50%;
} */
 .top-line {
	transform: rotate(90deg);
    position: relative;
    height: 10px;
    display: inline-block;
 }
.top-line span{
	display: block;
    width: 65px;
    height: 2px;
    background: #000;
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
	content: '';
    left: 50%;
}

.section-header p {
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	margin: 0;
}

/* .product-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px); */
	/* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
/* } */

.product-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	border: 1px solid #e9e9e9;
}

.product-image img {
	width: 100%;
    height: 100%;
    object-fit: contain;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 20px 20px 0;
	text-align: center;
}

.product-info h3 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #000;
	line-height: 1.4;
}

.product-info .price {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	margin: 0;
}

.btn-view-all {
	display: inline-block;
	padding: 11px 36px;
	background: #fff;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	transition: background 0.3s ease;
	border: 2px solid #000;
}

.btn-view-all:hover {
	background: #000;
	color: #fff;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
	color: #000;
	width: 45px;
	height: 45px;
	/* background: #fff; */
	border-radius: 50%;
	/* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15); */
	transition: all 0.3s ease;
	/* border: 2px solid #000; */
	z-index: 10;
	top: 38% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.swiper-button-next {
	right: 0px;
}

.swiper-button-prev {
	left: 0px;
}

/* Ensure swiper container has proper positioning */
.productSwiper {
	position: relative;
	padding: 0 40px;
	overflow: hidden;
}

.productSwiper .swiper-wrapper {
	padding: 10px 0;
}

/* Swiper Pagination */
.swiper-pagination {
	position: relative;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	background: #000;
	opacity: 0.3;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #000;
}

/* Responsive Product Showcase */
@media (max-width: 1200px) {
	.section-header h2 {
		font-size: 38px;
	}
	
	.productSwiper {
		padding: 0 60px;
	}
	
	.swiper-button-next {
		right: 15px;
	}
	
	.swiper-button-prev {
		left: 15px;
	}
}

@media (max-width: 768px) {
	.product-showcase {
		padding: 60px 0;
	}
	
	.section-header h2 {
		font-size: 32px;
	}
	
	.section-header p {
		font-size: 14px;
	}
	
	.product-image {
		height: 250px;
	}
	
	.product-info {
		padding: 15px;
	}
	
	.product-info .price {
		font-size: 16px;
	}
	
	.productSwiper {
		padding: 0 50px;
	}
	
	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
	}
	
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	
	.section-header {
		margin-bottom: 40px;
	}
	
	.section-header h2 {
		font-size: 28px;
	}
	
	.product-image {
		height: 200px;
	}
	
	.product-info .price {
		font-size: 15px;
	}
	
	.btn-view-all {
		padding: 12px 30px;
		font-size: 14px;
	}
	
	.productSwiper {
		padding: 0 45px;
	}
	
	.swiper-button-next,
	.swiper-button-prev {
		width: 35px;
		height: 35px;
	}
	
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 14px;
	}
}

/* Category Showcase Section */
.category-showcase {
	margin: 0;
	padding: 0;
}

.category-item {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.category-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	transition: transform 0.3s ease;
}

.category-item:hover .category-image {
	transform: scale(1.05);
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}
.category-overlay .cat-para-txt, .category-overlay .btn-category{
	display:none;
	transition:0.2s;
}
.category-overlay:hover .cat-para-txt, .category-overlay:hover .btn-category{
	display:block;
}
.category-item:hover .category-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.category-content {
	text-align: center;
	color: #fff;
	padding: 20px;
	max-width: 400px;
}

.category-content h3 {
	font-size: 36px;
	margin-bottom: 20px;
	letter-spacing: 1px;
	color:#fff;
}

.category-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.9;
}

.btn-category {
	border: 2px solid #fff;
	display: inline-block;
	padding: 12px 35px;
	background: transparent;
	color: #fff;
	text-decoration: underline;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	/* border: 2px solid #fff; */
	transition: all 0.3s ease;
}

.btn-category:hover {
	background: #fff;
	color: #000;
}

/* Responsive Category Showcase */
@media (max-width: 991px) {
	nav.navbar.navbar-expand-lg {
		border-top: 0px solid #777574;
		margin-top: 0px;
		padding-top: 10px;
	}
	.category-item {
		height: 500px;
	}
	
	.category-content h3 {
		font-size: 36px;
	}
	
	.category-content p {
		font-size: 14px;
	}
	.testimonial-wrapper {
		max-width: 100% !important;
	}
}

@media (max-width: 767px) {
	.fullscreen-menu .navbar-nav {
    gap: 0px;
    margin: 0px;
}
	.about-banner {
    padding: 120px;
}
	.header-logo-section{
		padding: 0px;
	}
	.hero-banner {
    padding-top: 130px;
    padding-bottom: 80px;
	}
	.custom-jewellery-content {
        padding: 10px !important;
		text-align: center;
    }
	.category-item {
		height: 400px;
	}
	
	.category-content h3 {
		font-size: 32px;
		margin-bottom: 15px;
	}
	
	.category-content p {
		font-size: 13px;
		margin-bottom: 20px;
	}
	
	.btn-category {
		padding: 10px 25px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.category-item {
		height: 350px;
	}
	
	.category-content {
		padding: 15px;
	}
	
	.category-content h3 {
		font-size: 28px;
	}
	
	.category-content p {
		font-size: 12px;
	}
	
	.btn-category {
		padding: 8px 20px;
		font-size: 12px;
	}
}

/* Custom Jewellery Section */
.custom-jewellery {
	padding: 100px 0;
	background: #fff;
}

.founder-section {
	max-width: 900px;
	margin: 0 auto 80px;
}

.founder-section h2 {
	font-size: 40px;
	line-height: 1.3;
	margin-bottom: 25px;
	color: #000;
}

.founder-label {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #666;
	margin: 0;
}

.custom-jewellery-image {
	text-align: center;
	margin-bottom: 40px;
}

.custom-jewellery-image img {
	max-width: 100%;
	height: auto;
}

.custom-jewellery-content {
	padding: 50px;
}

.custom-jewellery-content h3 {
	font-size: 40px;
	margin-bottom: 30px;
	color: #000;
}

.custom-jewellery-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 10px;
}

.btn-read-more {
	display: inline-block;
	padding: 12px 40px;
	background: transparent;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	border: 2px solid #000;
	transition: all 0.3s ease;
}

.btn-read-more:hover {
	background: #000;
	color: #fff;
}

/* Responsive Custom Jewellery */
@media (max-width: 991px) {
	.custom-jewellery {
		padding: 80px 0;
	}
	
	.founder-section {
		margin-bottom: 60px;
	}
	
	.founder-section h2 {
		font-size: 36px;
	}
	
	.custom-jewellery-content h3 {
		font-size: 32px;
	}
	
	.custom-jewellery-content p {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.custom-jewellery {
		padding: 60px 0;
	}
	
	.founder-section h2 {
		font-size: 32px;
	}
	
	.founder-label {
		font-size: 13px;
	}
	
	.custom-jewellery-content h3 {
		font-size: 30px;
		margin-bottom: 20px;
	}
	
	.custom-jewellery-content p {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.btn-read-more {
		padding: 10px 30px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.custom-jewellery {
		padding: 50px 0;
	}
	
	.founder-section {
		margin-bottom: 40px;
	}
	
	.founder-section h2 {
		font-size: 24px;
	}
	
	.custom-jewellery-content h3 {
		font-size: 30px;
	}
	
	.custom-jewellery-content p {
		font-size: 14px;
	}
	
	.btn-read-more {
		padding: 8px 25px;
		font-size: 12px;
	}
}

/* Platinum Collection Section */
.platinum-collection {
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-size: cover;
}


.platinum-image {
	width: 100%;
	height: 100%;
	min-height: 600px;
	overflow: hidden;
}

.platinum-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.platinum-image:hover img {
	transform: scale(1.05);
}

.platinum-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 80px 60px;
	height: 100%;
}

.platinum-content h2 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #000;
}

.platinum-content p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 10px;
	max-width: 500px;
}

.btn-platinum-shop {
	display: inline-block;
	padding: 15px 45px;
	background: #000;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid #000;
}

.btn-platinum-shop:hover {
	background: transparent;
	color: #000;
}

/* Responsive Platinum Collection */
@media (max-width: 991px) {
	.platinum-image,
	.platinum-content {
		min-height: 500px;
	}
	
	.platinum-content {
		padding: 60px 40px;
	}
	
	.platinum-content h2 {
		font-size: 42px;
		margin-bottom: 25px;
	}
	
	.platinum-content p {
		font-size: 15px;
		margin-bottom: 35px;
	}
	
	.btn-platinum-shop {
		padding: 12px 35px;
	}
}

@media (max-width: 768px) {
	.platinum-image,
	.platinum-content {
		min-height: 450px;
	}
	
	.platinum-content {
		padding: 50px 30px;
		align-items: center;
		text-align: center;
	}
	
	.platinum-content h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}
	
	.platinum-content p {
		font-size: 14px;
		margin-bottom: 30px;
		max-width: 100%;
	}
	
	.btn-platinum-shop {
		padding: 10px 30px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.platinum-image,
	.platinum-content {
		min-height: 400px;
	}
	
	.platinum-content {
		padding: 40px 20px;
	}
	
	.platinum-content h2 {
		font-size: 32px;
	}
	
	.platinum-content p {
		margin-bottom: 25px;
	}
	
	.btn-platinum-shop {
		padding: 8px 25px;
		font-size: 12px;
	}
}


/* Craftmanship Section */
.custom-jewellery.craftsmanship .craft-box{
    text-align: center;
    margin-top: 10px;
}
.custom-jewellery.craftsmanship .craft-box h5{
    margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
    color: #000;
    line-height: 22px;
}
.custom-jewellery.craftsmanship .craft-box img {
    height: 47px;
    object-fit: contain !important;
}

/* End Craftmanship Section */	

/* Start Testimonial Section */

.testimonial .product-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.testimonial .product-image {
    width: auto;
    height: auto;
    overflow: hidden;
    border: 0px solid #e9e9e9;
    padding: 0px;
    margin-bottom: 30px;
}
.testimonial-wrapper {
    max-width: 75%;
    margin: auto;
}
.testimonial .testimonial-wrapper .product-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.8;
    padding: 0 20px 40px;
    max-width: 85%;
    margin: auto;
}
.testimonial .author{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1.5px;
}

/* End Testimonial Section */

/* Start FAQ section */

.faq{
	padding: 80px 0;
}
.faq h2{
	font-size: 40px;
}
.accordion-button:focus{
	box-shadow: none !important;
}
.faq button.accordion-button {
    padding: 20px 5px;
}
section.faq button.accordion-button:hover{
	color: #000 !important;
}
section.faq .accordion-button:focus {
    color: #000;
    background: none;
}
.woocommerce-MyAccount-navigation-link.is-active a {
    color: #000;
    font-weight: 500;
}
/* End FAQ section */

/* Start Features Section */
.features-section {
    background-color: #fefbf8;
    padding: 60px 0;
}

.feature-item {
    text-align: center;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background-color: #000;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-icon img{
	width: 60px;
    height: 47px;
	object-fit: contain;
}

.feature-icon:hover {
    transform: translateY(-3px);
}

.feature-text h5 {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .2px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 767.98px) {
	.faq {
    	padding: 60px 0;
	}
	.faq .container{
		padding: 0 20px;
	}
	.testimonial .testimonial-wrapper .product-info h3 {
    	padding: 0 20px 20px;
	}
	.faq button.accordion-button {
		padding: 12px 5px;
		font-size: 15px;
		gap: 10px;
		line-height: 20px;
	}
	.faq .accordion-body {
    	font-size: 14px;
	}
	.faq h2 {
    	font-size: 32px;
	}
    .features-section {
        padding: 50px 0;
    }
	.custom-jewellery-image {
    	margin-bottom: 20px;
	}
    
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .feature-item:not(:last-child)::after {
        display: none;
    }
    
    .feature-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .feature-icon {
        flex-shrink: 0;
    }
    
    .feature-text h3 {
        font-size: 13px;
    }
	section.testimonial .product-info {
		padding: 0px;
	}
}

@media (max-width: 575.98px) {
    
    .features-wrapper {
        gap: 30px;
    }
    
    .feature-content {
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
	.feature-icon img {
    	width: 50px;
	}
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-text h3 {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    
    .feature-item:not(:last-child)::after {
        right: -10px;
    }
    
    .feature-text h3 {
        font-size: 13px;
    }
}

/* End Features Section */

/* Start Footer */
footer.footer {
    color: #fff;
    padding: 80px 0 0;
}
footer.footer .social-icon {
    background: #262626;
    border-radius: 30px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
	transition: all 0.3s ease;
}
footer.footer .social-icon:hover{
	background: #fff;
	transform: rotate(360deg);
}
footer.footer .social-icon:hover i{
	color: #000;
}
footer.footer .social-links {
    margin-left: 50px;
}
ul.links{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0px;
    margin-top: 25px;
	margin-left: 0;
}
ul.links li{
	flex: 0 0 48%;
	list-style: none;
	color: #fff;
}
ul.links li a{
	color: #fff;
	transition: all ease-in-out;
}
ul.links li a:hover{
	color: #ddd;
}
.contact-links{
	padding: 0px;
    margin-top: 25px;
	margin-left: 0;
}
.contact-links li{
	list-style: none;
	margin-bottom: 12px;
}
.contact-links li a{
	color: #fff;
}
.footer-link-box h3 {
    font-size: 24px;
	color:#fff;
}
.contact-links li a i {
    font-size: 18px;
}
.copyright-box {
    border-top: 1px solid #ffffff20;
    padding: 24px 0;
    margin-top: 45px;
}
.copyright-box p{
	font-size: 14px;
}
button:hover{
  color: #7e7e7e !important;
  background-color: #fff !important;
}

@media (min-width:768px) and (max-width:991.98px){
	.footer-logo-box img {
		width: 100%;
	}
}
@media (max-width:767px){
	footer.footer {
		padding: 60px 0 0;
	}
	footer.footer .container{
		padding: 0 20px;
	}
	footer.footer .social-links {
		margin-left: 0px;
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	.footer-logo-box {
		text-align: center;
	}
	ul.links {
		margin-top: 25px;
		align-items: center;
		justify-content: center;
		text-align: center;
		flex-direction: column;
	}
	.footer-link-box h3 {
		text-align: center;
	}
	.contact-links {
        text-align: center;
	}
	.copyright-box {
		border-top: 1px solid #ffffff20;
		padding: 20px 0;
		margin-top: 15px;
	}
}
/* End Footer */


/* contact page */
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.message {
    height: 120px;
}
.contact-form{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 40px;
}
.contact-form input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #000;
    padding: 12px 30px;
}
.contact-page-form .d-flex img{
	width: 20%;
}
.contact-call-img img {
    width: 25px;
}
.contact-mail-img img {
    width: 25px;
}
section.conatct-details .d-flex.gap-3 {
	border: 1px solid #969696;
    height: 100%;
    padding: 22px;
}
.global-p{
	color: #334155;
}
.contact-call-img img ,.contact-mail-img img{
	width: 100% !important;
}
.contact-location-img,.contact-call-img,.contact-mail-img{
    background: #eee;
    padding: 12px;
    border-radius: 50%;
	width: 9%;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background: #000;
    padding: 10px 20px;
}
ul.products.columns-4 li {
    border: 1px solid #eee;
    padding: 20px !important;
	 transition: transform 0.5s ease-in-out;
}
ul.products.columns-4 li:hover{
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

ul.products.columns-4 li img {
  transition: transform 0.3s ease-in-out;
}

ul.products.columns-4 li:hover img {
  transform: scale(1.1);
}
.page-id-56 header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
.page-id-56 header.entry-header.ast-no-thumbnail {
    display: none;
}
.page-id-56 td.product-name a {
    color: #000;
}
.page-id-56 .woocommerce table.cart td.actions .button{
background-color: #000 !important;
}
a.shipping-calculator-button {
    color: #000;
}
a.checkout-button.button.alt.wc-forward {
    background: #000;
    padding: 12px;
}
.page-id-57 header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
.page-id-57 header.entry-header.ast-no-thumbnail {
    display: none;
}
.page-id-59 header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
.page-id-59 header.entry-header.ast-no-thumbnail {
    display: none;
}
.page-id-3 header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
.page-id-3 header.entry-header.ast-no-thumbnail {
    display: none;
}


.page-id-58  header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
header.woocommerce-Address-title.title {
    background: #fff !important;
}
.single-product header{
    background: #000 !important;
    position: static !important;
	padding-bottom: 20px;
}
.page-id-58 header.entry-header.ast-no-thumbnail {
    display: none;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error{
    border-color: #000 !important;
}
a.button.wc-forward {
    background: #000 !important;
}
.woocommerce-message::before, .woocommerce-info::before {
    color: #000 !important;
}
a.showcoupon{
	color: #000 !important;
}
a.woocommerce-privacy-policy-link {
    color: #000;
}
button#place_order {
    background: #000;
	&:hover{
		background: #000 !important;
        color: #fff !important;
	}
}
ul.woocommerce-error li a {
    color: #000;
}
.single-product section.single-product-page {
    padding: 60px 0px;
}
.single-product span.single-product-category a {
    color: #000;
}
.single-product button.single_add_to_cart_button.button.alt {
    background: #000;
		&:hover{
		background: #000 !important;
        color: #fff !important;
	}
}
.single-product span.posted_in a {
    color: #000;
}
.single-product div#review_form_wrapper input#submit{
background: #000 !important;
}
.woocommerce .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {
    border: 1px solid #eee;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before, .woocommerce div.ast-product-tabs-layout-vertical .woocommerce-tabs ul.tabs li:hover::before{
	    background: #000000;
}
section.product-showcase .product-info h3 a{
	color: #000;
    font-size: 20px;
    font-weight: 500;
}
a.restore-item {
    color: #000;
}
.about-custom-jewellery{
	padding: 0px 0px 100px 0px;
}
	
.single-product h1.product_title.entry-title {
    font-size: 28px;
}
nav.woocommerce-MyAccount-navigation ul li a {
    color: #000;
}
.woocommerce-MyAccount-content a{
	color: #000;
}

@media (max-width: 767px) {
.about-custom-jewellery {
    padding: 0px 0px 0px 0px;
}
}
section.shop-page {
    padding-top: 50px;
}
.woocommerce-MyAccount-content button.woocommerce-Button.button {
    background: #000;
	&:hover{
		    background: #000 !important;
			color: #fff !important;
	}
}
form.woocommerce-form.woocommerce-form-login.login {
    width: 600px;
    margin: 0 auto;
}
.page-id-58 .woocommerce h2{
	text-align: center;
}
button.woocommerce-button.button.woocommerce-form-login__submit
 {
    padding: 12px 30px;
    margin-top: 18px;
    background: #000;
		&:hover{
		    background: #000 !important;
			color: #fff !important;
	}
}
p.woocommerce-LostPassword.lost_password a {
    color: #000;
    font-weight: 500;
}
form.woocommerce-ResetPassword.lost_reset_password {
    width: 600px;
    margin: 0 auto;
}
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button.button{
	    padding: 12px 30px;
    background: #000;
		&:hover{
		    background: #000 !important;
			color: #fff !important;
	}
}

.query-section{
	background-color: #0000000d;
}
.stay-connected a i {
    font-size: 22px;
}
.stay-connected a{
	color: #334155;
}

.cta-bg{
	background-image: url("https://tighe.evgigsoft.com/wp-content/uploads/2026/03/wedding-preparation-beautiful-happy-bride-dresses-earrings-before-wedding_11zon-1-scaled.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0px;
	position: relative;
}
.cta-bg::before{
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #00000061;
	left: 0px;
}
.tnp.tnp-subscription form .tnp-field.tnp-field-email label {
    display: none;
}
.tnp.tnp-subscription form {
    display: flex;
    align-items: center;
    gap: 20px;
	    justify-content: end;
}
.tnp.tnp-subscription form input.tnp-submit {
    padding: 7px 20px !important;    background: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
}
.tnp.tnp-subscription form  input#tnp-1 {
    border-radius: 0px;
}

.custom-attributes p {
    margin-bottom: 5px;
}
.custom-attributes h4{
	    margin-bottom: 10px;
}
.tnp-field.tnp-field-email {
    width: 253px;
}

.newslatter-input {
    width: 40%;
}