body {
    font-family: 'Noto Serif', serif !important;
    color: #0c0c0c;
    background-color: #ffffff;
}
h2{
    font-size: 2rem;
}
@media (max-width: 991px) {
    .menu-item-has-children:hover > .sub-menu {
        display: none !important;
    }

    .menu-item-has-children > .sub-menu {
        display: none !important;
        position: static !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .navbar-nav .sub-menu {
        display: none !important;
    }
}

.mobile-submenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-submenu-overlay.active {
    display: flex;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
}

.close-btn {
    font-size: 1.5rem;
    background: transparent;
    border: none;
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.submenu-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

		/* Hide navbar toggler in desktop view */
	@media (min-width: 992px) {
	  .navbar-toggler {
		display: none !important;
	  }
	}


		

		.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='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	}
		.top-right-menu {
		position: relative; /* instead of absolute */
		display: inline-block;
		margin-top: 10px;
		/* optionally add float:right here if needed */
	}

	.top-menu-list {
		list-style: none;
		display: flex;
		gap: 20px;
	}

	.top-menu-list li a {
		text-decoration: none;
		color: #333;
	}
			.navbar {
				z-index: 1000;
			}
			.section-title {
		  text-align: center;
		  font-size: 2rem;
		  margin-top: 0px;
		  margin-bottom: 10px;
		  font-weight: 600;
		}

		.product-grid {
		  display: grid;
		  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		  gap: 20px;
		  max-width: 1200px;
		  margin: auto;
		}

		.product-card {
		  border-radius: 15px;
		  overflow: hidden;
		  background: #fff;
		  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
		  transition: transform 0.3s ease;
		}

		.product-card:hover {
		  transform: translateY(-5px);
		}

		.product-image-wrapper {
		  position: relative;
		  width: 100%;
		  aspect-ratio: 3 / 4;
		  overflow: hidden;
		}

		.product-image-wrapper img {
		  width: 100%;
		  height: 100%;
		  object-fit: fill;
		  position: absolute;
		  top: 0;
		  left: 0;
		  transition: opacity 0.4s ease;
		}

		.product-image-wrapper img.second-image {
		  opacity: 0;
		  z-index: 2;
		}

		.product-card:hover .second-image,
		.product-card:active .second-image {
		  opacity: 1;
		}

		.product-details {
		  padding: 15px;
		  text-align: center;
		}

		.product-title {
		  font-size: 0.95rem;
		  margin: 0 0 10px;
		}

		.product-price {
		  font-weight: bold;
		  color: #000;
		  margin-bottom: 8px;
		}

		.wishlist-icon {
		  color: #b33;
		  font-size: 1rem;
		  cursor: pointer;
		}

		@media (max-width: 600px) {
		  .section-title {
			font-size: 1.5rem;
		  }

		  /* Optional: Force second image on tap (for mobile) */
		  .product-card:active .second-image {
			opacity: 1;
		  }
		}
		
		.mobile-search-bar {
    display: block;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.mobile-search-bar form {
    width: 100%;
}

.mobile-search-bar input.search-field {
    flex: 1 1 auto;
    min-width: 0;
}

/* Base dropdown style */
.menu-item-has-children .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 9999;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

/* Show on parent hover */
.menu-item-has-children:hover > .dropdown-menu {
  display: block;
}

/* Multicolumn styling on hover */
@media (min-width: 768px) {
.menu-item-has-children:hover > .dropdown-menu.multi-column {
  display: flex !important;
}


/* Column width based on class */
.dropdown-menu.multi-column > .dropdown-item {
  display: block;
}

.dropdown-menu.columns-1 > .dropdown-item {
  width: 98%;
}
.dropdown-menu.columns-2 > .dropdown-item {
  width: 48%;
}
.dropdown-menu.columns-3 > .dropdown-item {
  width: 32%;
}
.dropdown-menu.columns-4 > li {
  width: 23%;
}
.dropdown-menu.columns-5 > .dropdown-item {
  width: 18%;
}
.dropdown-menu.columns-6 > .dropdown-item {
  width: 15%;
}

.dropdown-menu.multi-column.columns-3 {
  min-width: 600px; /* Adjusted for better spacing */
}


.dropdown-menu.multi-column.columns-2 {
  min-width: 400px; /* Adjusted for better spacing */
}

.dropdown-menu.multi-column.columns-4,.dropdown-menu.multi-column.columns-5,.dropdown-menu.multi-column.columns-6 {
  min-width: 700px; /* Adjusted for better spacing */
}
}
/* Responsive fallback: stack items on small screen */
@media (max-width: 768px) {
  .dropdown-menu.multi-column {
    flex-direction: column;
  }
  .dropdown-menu.multi-column .sub-category-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.text-link {
  color: #0073aa; /* WordPress default link color, or use your brand color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.text-link:hover {
  color: #005177; /* Darker shade for hover effect */
  text-decoration: underline;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0px;
    padding: 0;
    position: relative;
    width: 22.05%;
    margin-left: 0;
}

.row
{
	width:100%;
	margin:0px;
}
label small {
  font-size: 12px;
  color: #666;
  margin-left: 4px;
}

.slider_section {
/*  height: 80vh; */
}

.logo{
width:20%;
float:left;
}

@media (max-width: 768px) {
  .slider_section {
    /* height: 30vh !important; */
  }
  .logo
  {
	  width:100%;
  }
}

.menu-item > a {
	color:black;
	
}
.navbar
{
	font-family:'Cormorant Garamond';
	font-weight:bolder;
}


/* Container for dropdown */
/* Style for parent menu items that have subcategories */
.menu-item-has-children > a::after {
    content: ' ▼';  /* Adds a visual indicator for dropdown */
    font-size: 0.8em;
    margin-left: 5px;
}

/* Hide submenus by default */
.sub-menu, .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Display the dropdown on hover */
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:hover > .dropdown-menu {
    display: block;
}


/* Mega Menu Styling */
li.dropdown {
  position: relative;
}

li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  padding: 0px;
  margin-top:-7px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;  
  gap: 8px;
  text-align: center;
}

/* Show dropdown when active */
li.dropdown.show .dropdown-menu {
  display: grid;
}

/* Individual items */
.dropdown-menu .dropdown-item {
  display: block;
  padding: 0px;
  color: #fff;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #33333340;
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media (max-width: 991.98px) {
  .top-right-nav {
    justify-content: center !important;
    text-align: center;
    margin-top: 15px;
  }

  .top-right-nav .navbar-nav {
    width: 100%;
    justify-content: center !important;
  }

  .top-right-nav .nav-item {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  /* Dropdown menu layout */
  li.dropdown .dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0px;
    background-color: #ffffff; /* Light gray background */
    box-shadow: none;
    border-radius: 0;	
	color: black;      
  }

  /* Dropdown menu items */
  .dropdown-menu .dropdown-item {
    font-size: 14px;         /* Smaller font */
    padding: 6px 10px;       /* Smaller padding */
    background-color: #ffffff !important; /* Force gray background */
    color: black;             /* Darker text for contrast */
    text-align: center;
  }

  /* Hover and active effect */
  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item.active {
    background-color: #dcdcdc; /* Slightly darker gray */
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
}


  .flip-container {
                perspective: 1000px;
                width: 100%;
                max-width: 800px;
                aspect-ratio: 1.1;
            }

            .flipper {
                position: relative;
                width: 100%;
                height: 100%;
                transform-style: preserve-3d;
                transition: transform 0.6s;
            }

            .flipped .flipper {
                transform: rotateY(180deg);
            }

            .front, .back {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                backface-visibility: hidden;
            }

            .front img, .back img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 12px;
            }

            .back {
                transform: rotateY(180deg);
            }
			
			
.buttonStyle {
    padding: 3px 15px;
    outline: none;
    border: none;
    border-radius: 15px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#670508), to(#670508));
    background: linear-gradient(to bottom, #670508, #670508);
    margin-top: 5px;
    //text-transform: uppercase;
}

.layout_padding {
    padding: 75px 0;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 75px;
}

.layout_padding-bottom {
    padding-bottom: 75px;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.heading_container h2 {
    position: relative;
}

.heading_container h2::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 30px;
    right: -15px;
    background: -webkit-gradient(linear, left top, right top, from(#fb930a), to(#f5e47b));
    background: linear-gradient(to right, #fb930a, #f5e47b);
}

/*header section*/
.hero_area {
    /*height: 100vh;*/
    position: relative;
    /*background-image: url(../images/black.jpg);*/
    background-color: #ffffff;
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.sub_page .hero_area {
    height: auto;
    background-position: top right;
}

.hero_area.sub_pages {
    height: auto;
}

.header_section .container-fluid {
    padding-right: 0px;
    padding-left: 0px;	
}

.header_section .nav_container {
    margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    border-bottom: 1px solid white; /* this creates the white gridline */
}
/*
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 25px;
    color: #222222;
    text-align: center;
}
*/
.custom_nav-container.navbar-expand-lg .current-menu-item  .nav-link {    
    color: #000000;    
}

.custom-dropdown {
    background-color: transparent;
    border: none;
    text-align: center;
    min-width: 150px;
    box-shadow: none;
    margin:0px;
    padding:0px;
}

.custom-dropdown .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 500;
    background-color: #da151e;
    text-align: center;
    transition: background-color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover,.dropdown-item.active {
    background-color: #333333; /* Change this to any color you like */
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-color: #670508;          /* Change underline color */
    text-decoration-thickness: 2px;      /* Make it thicker */
    text-underline-offset: 4px;	
}



/* Optional: remove default arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position-y: 7px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
}
.navbar{
    background-color: #ffffff;
    width: 100%;
}
.navbar-nav
{
		text-align:center;
}
.nav-item:hover ,.nav-link.active,.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover {
	text-decoration-color: #670508;                  
    text-decoration-line: underline;    
    text-decoration-thickness: 2px;      /* Make it thicker */
    text-underline-offset: 4px;
	color:black;
}

/* Change text color on hover over parent */
.navbar-nav .nav-item.dropdown:hover > .nav-link,
.navbar-nav .nav-item.dropdown:focus-within > .nav-link,
.navbar-nav .nav-item.dropdown.show > .nav-link {
  color: black !important;
  background-color: #ffffff !important; /* optional for background highlight */
}

/* Optional: Change background of dropdown menu */
.navbar-nav .dropdown-menu {
  background-color: #fff; /* or any dark background you prefer */
  z-index:1000;
}

/* Optional: Style the dropdown items */
.navbar-nav .dropdown-menu .nav-link {
  color: black;
}
.navbar-nav .dropdown-menu .nav-link:hover {
  color: #ccc;
}

.current-menu-item
{    
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-color: #670508;          
    text-decoration-thickness: 2px;     
    text-underline-offset: 4px;	
}



.navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-brand img {
    width: 30px;
    margin-right: 5px;
}

.navbar-brand span {
    font-size: 22px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
}

.custom_nav-container {
    z-index: 999;
    padding: 0px;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  --bs-navbar-toggler-border-color: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
   background-image: url('images/menu.png'); /* adjust path if needed */
    background-size: 45px;
    background-repeat: no-repeat;
    background-position: center;
}

.quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote_btn-container a {
    color: #000000;
    position: relative;
}

.quote_btn-container a .cart_number {
    position: absolute;
    top: 68%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
}

.quote_btn-container a img {
    width: 20px;
    margin: 0 25px;
}

/*end header section*/
/* slider section */
.slider_section {
    /*height: calc(100% - 70px);*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section .design-box {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 75px;
}

.slider_section .design-box img {
    width: 100%;
}

.slider_section .slider_number-container {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 4%;
    text-align: center;
    opacity: .6;
}

.slider_section .slider_number-container hr {
    width: 1px;
    height: 50px;
    border: none;
    background-color: #ffffff;
}

.slider_section .slider_number-container .number-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
}

.slider_section .detail_box h2 {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section .detail_box h2 span {
    margin-right: 10px;
}

.slider_section .detail_box h2 hr {
    margin: 0;
    border: none;
    width: 55px;
    height: 1px;
    background-color: #000000;
}

.slider_section .detail_box h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 5rem;
    margin-bottom: 30px;
}

.slider_section .detail_box a {
    display: inline-block;
    padding: 8px 40px;
    background-color: #0d0806;
    border: 1px solid #0d0806;
    color: #ffffff;
    border-radius: 0;
    margin: 35px 0;
}

.slider_section .detail_box a:hover {
    background-color: transparent;
    color: #0d0806;
}

.slider_section .img-box img {
    width: 100%;
}

.slider_section .carousel-indicators {
    padding: 0;
    margin: 0;
    right: initial;
    bottom: 22%;
    left: 17%;
}

.slider_section .carousel-indicators li {
    text-indent: 0;
    width: auto;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border: none;
    color: #c0c0c0;
    font-size: 24px;
    display: none;
}

.slider_section .carousel-indicators li.active {
    display: block;
}

.item_section .item_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item_section .item_container .box {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px 10px;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
}

.item_section .item_container .box .img-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.item_section .item_container .box .img-box img {
    min-width: 125px;
}

.item_section .item_container .box h6 {
    color: #fbb534;
    text-transform: uppercase;
}

.item_section .item_container .box h5 {
    text-transform: uppercase;
}

.item_section .item_container .box:hover {
    -webkit-box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
}

.about_section {
    position: relative;
}

.about_section .design-box {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 75px;
}

.about_section .design-box img {
    width: 100%;
}

.about_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_section .detail-box p {
    margin-top: 35px;
}

.about_section .detail-box a {
    display: inline-block;
    padding: 8px 40px;
    background-color: #0d0806;
    border: 1px solid #0d0806;
    color: #ffffff;
    border-radius: 0;
    margin-top: 35px;
}

.about_section .detail-box a:hover {
    background-color: transparent;
    color: #0d0806;
}

.about_section .img-box img {
    width: 100%;
}

.price_section {
    background-color: #f8f8f8;
}

.price_section .price_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.price_section .price_container .box {
    min-width: 15%;
    max-width: 23%;
    /*    height: 550px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 35px 10px;
    padding: 0px;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.price_section .price_container .box .img-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.price_section .price_container .box .img-box img {
    width: 18em;
}

.price_section .price_container .box h6 {
    font-weight: bold;
    font-size: 18px;
}

.price_section .price_container .box .detail-box h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
}

.price_section .price_container .box .detail-box h5 span {
    color: #fbb534;
}

.price_section .price_container .box .detail-box a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #000000;
    font-weight: bold;
    color: #000000;
    margin-top: 15px;
}

.price_section .price_container .box:hover a {
    border-color: #fbb534;
    color: #fbb534;
}

.price_section .price_btn {
    display: inline-block;
    padding: 8px 40px;
    background-color: #0d0806;
    border: 1px solid #0d0806;
    color: #ffffff;
    border-radius: 0;
}

.price_section .price_btn:hover {
    background-color: transparent;
    color: #0d0806;
}

.ring_section {
    text-align: center;
    position: relative;
}

.ring_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ring_section .container {
    -webkit-box-shadow: 0px 0px 56px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 56px 1px rgba(0, 0, 0, 0.08);
}

.ring_section .design-box {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 75px;
}

.ring_section .design-box img {
    width: 100%;
}

.ring_section .ring_container .detail-box h4 {
    text-transform: uppercase;
    color: #fbb534;
}

.ring_section .ring_container .detail-box a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #000000;
    font-weight: bold;
    color: #000000;
    margin-top: 15px;
}

.ring_section .ring_container .img-box img {
    width: 100%;
}

.client_section .heading_container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.client_section .secondary_heading {
    text-align: center;
}

.client_section .client_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #fbb534;
    padding: 25px;
    width: 85%;
    margin: 75px auto;
}

.client_section .client_container .client-id {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 45%;
}

.client_section .client_container .client-id .img-box {
    margin-right: 25px;
}

.client_section .client_container .client-id .img-box img {
    width: 100%;
}

.client_section .client_container .client-id h5 {
    font-weight: bold;
}

.client_section .client_container .client-id h6 {
    color: #f6d768;
}

.client_section .client_container .detail-box {
    width: 55%;
}

.client_section .client_container .detail-box p {
    margin: 0;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
    opacity: 1;
}

.client_section .carousel-control-prev {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.client_section .carousel-control-next {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.client_section .carousel-control-prev-icon,
.client_section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 25px;
}

.client_section .carousel-control-prev-icon {
    background-image: url(../images/prev-black.png);
}

.client_section .carousel-control-prev-icon:hover {
    background-image: url(../images/prev.png);
}

.client_section .carousel-control-next-icon {
    background-image: url(../images/next-black.png);
}

.client_section .carousel-control-next-icon:hover {
    background-image: url(../images/next.png);
}

.contact_section {
    position: relative;
}

.contact_section .design-box {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    right: 0;
    width: 75px;
}

.contact_section .design-box img {
    width: 100%;
}

.contact_section h2 {
    margin-bottom: 65px;
}

.contact_section form {
    padding-right: 35px;
}

.contact_section input {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 25px;
    background-color: transparent;
    outline: none;
    color: #101010;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
}

.contact_section input::-webkit-input-placeholder {
    color: #131313;
}

.contact_section input:-ms-input-placeholder {
    color: #131313;
}

.contact_section input::-ms-input-placeholder {
    color: #131313;
}

.contact_section input::placeholder {
    color: #131313;
}

.contact_section input.message-box {
    height: 120px;
}

.contact_section button {
    padding: 12px 45px;
    outline: none;
    border: none;
    border-radius: 30px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5e47b), to(#fb930a));
    background: linear-gradient(to bottom, #f5e47b, #fb930a);
    margin-top: 35px;
}

.contact_section .map_container {
    height: 100%;
    padding-bottom: 110px;
}

.contact_section .map_container .map-responsive {
    height: 100%;
}

.info_section {
    background-color: #363636;
    color: #ffffff;
}

.info_section .info_container .info_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 10px 45px 10px;
    background-color: #ffffff;
    width: 200px;
    border-radius: 0 0 50px 50px;
}

.info_section .info_container .info_logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info_section .info_container .info_logo a img {
    width: 50px;
    margin-right: 10px;
}

.info_section .info_container .info_logo a span {
    text-transform: uppercase;
    color: #000000;
    font-size: 28px;
    font-weight: bold;
}

.info_section .info_container .info_contact {
    padding: 115px 10px 45px 10px;
}

.info_section .info_container .info_contact a {
    color: #ffffff;
}

.info_section .info_container .info_contact a img {
    margin-right: 10px;
}

.info_section .info_heading {
    text-transform: uppercase;
    margin: 20px 0;
    position: relative;
}

.info_section .info_heading::before {
    content: "";
    width: 45px;
    height: 5px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 5px;
    background-color: #f8bf46;
}

.info_section .info_form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info_section .info_form form .email_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.info_section .info_form form label {
    color: #5a5959;
}

.info_section .info_form form input {
    width: 500px;
    border: none;
    background-color: #ffffff;
    outline: none;
    padding: 5px;
}

.info_section .info_form form button {
    padding: 8px 65px;
    outline: none;
    border: none;
    border-radius: 30px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5e47b), to(#fb930a));
    background: linear-gradient(to bottom, #f5e47b, #fb930a);
    margin-top: 35px;
    text-transform: uppercase;
}

.info_section .info_social {
    padding-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info_section .info_social .social_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info_section .info_social .social_box img {
    min-width: 10px;
    margin: 0 10px;
}
 .img-box-kundan
            {
                width: 25%;
                background-color: black;
            }
            .mobileNoShow
            {
                display: block;
            }
            .detail_box_slide_header
            {
                color: #670607;
            }
            .detail_box_slide_sub_header
            {
                color: #002147;
            }
            .detail_box_slide_description
            {
                color: #670607;
            }

            .img-rounded
            {
                border-radius: 20px;
            }
			.recently-added-image
			{
				width: 90%;
    border-radius: 10px;
    margin: 5%;
			}
			
			.best-seller-image
			{
				width: 90%;
    border-radius: 10px;
    margin: 5%;
			}
.jewelley-box-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.jewelley-box-name {
    width: 100%;
    text-align: center;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.owl-carousel {
    display: flex;
    flex-wrap: nowrap;
    width: max-content; /* Important for long horizontal content */
    animation: scroll 20s linear infinite; /* Adjust speed as needed */
}


.owl-carousel .item {
  padding: 5px;
  box-sizing: border-box;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(0%);
    }
}

			/*
            .item {
                min-width: 300px;
                margin: 0 10px;            
                padding: 0px;
                text-align: center;
            }
			*/
            /* Responsive styles */
            @media (max-width: 768px) {
                .item {
                    width: 100%;
                    font-size: 1rem;
                }
                .mobileNoShow
                {
                    display: none;
                }
            }

            @media (max-width: 480px) {
                .item {
                    width: 100%;
                    font-size: 0.9rem;
                }
                .mobileNoShow
                {
                    display: none;
                }
            }

  .popup-btn {
                margin: 100px auto;
                display: block;
                padding: 10px 20px;
                font-size: 18px;
                background: #007bff;
                color: white;
                border: none;
                cursor: pointer;
                border-radius: 5px;
            }

            /* The popup form - hidden by default */
            .form-popup {
                display: none;
                position: fixed;
                z-index: 999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                overflow: auto;
                background-color: rgba(0,0,0,0.5);
				 z-index: 99999;
            }

            .form-container {
                background-color: white;
                margin: 10% auto;
                padding: 20px;
                border-radius: 10px;
                width: 90%;
                max-width: 400px;
                box-shadow: 0 0 15px rgba(0,0,0,0.3);
            }

            .form-container h2 {
                text-align: center;
            }

            .form-container input[type="text"],
            .form-container input[type="email"],
            .form-container input[type="tel"] {
                width: 100%;
                padding: 10px;
                margin: 8px 0;
                border: 1px solid #ccc;
                border-radius: 5px;
            }

            .form-container .btn {
                width: 100%;
                padding: 10px;
                background-color: #28a745;
                color: white;
                border: none;
                border-radius: 5px;
                cursor: pointer;
                font-size: 16px;
            }

            .form-container .close {

                background-color: #da151e;
                margin-top: 10px;
                float: none;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.5;
                color: white;
                text-shadow: 0px;
                opacity: 1;
            }

/* footer section*/
.footer_section {
    background-color: #363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.footer_section p {
    border-top: 1px solid #ffffff;
    color: #9c9b9b;
    margin: 0;
    text-align: center;
    padding: 20px 35px;
    margin: 0;
}

.footer_section a {
    color: #9c9b9b;
}
/*# sourceMappingURL=style.css.map */