 body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }
 .btn-pink {
    background-color: #f68b8b;
    color: white;
  }
  .testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
  }
  .promise-circle {
    border-radius: 50%;
    background-color: #eaeaea;
  }
  .video-overlay p {
    color: #fff;
}

/*end banner*/


    /*start header design*/
        /* Make the header sticky */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1050; /* Ensure it's above other content */
    background-color: #fff; /* Ensure the header has a white background */
}

/* Add shadow effect to the header */
.site-header.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive styling for navbar */
.navbar-light .navbar-nav .nav-link {
    color: #333; /* Dark text for links */
    padding: 0.5rem 1rem; /* Add some padding around links */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #007bff; /* Highlight link color on hover */
}

/* Mobile menu adjustments */
.navbar-toggler-icon {
    background-color: #fff; /* Change the color of the toggle icon */
}

.navbar-light .navbar-nav .nav-item.active .nav-link {
    font-weight: bold;
    color: #007bff;
}

/* Logo Styling */
.navbar-brand img {
    max-height: 40px;
    object-fit: contain;
}

/* Custom spacing for navbar */
.navbar-nav {
    gap: 1rem;
}
    /*end header design*/


/*start footer*/
.widget_text {
    padding: 20px;
    margin: 0;
}

/* Make sure the content inside the widget is responsive */
.widget_text .col-md-3 {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.fas {
  color: #fff;
}
    footer {
      background-color: #ff1493;
      color: white;
      padding: 30px 0;
      text-align: center;
      border-radius: 15px 15px 0 0; /* Rounded corners at the top */
    }
    .contact-info, .social-icons a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
    }
    .social-icons a {
      font-size: 1.5rem;
    }
    .copy_custom a {
    text-decoration: none !important;
}
/*end footer*/
/*start carousel */
/* Custom CSS for Featured Jewelry Carousel */
.featured-jewelry-carousel .carousel-image {
  height: 400px; /* Fixed height of 400px for images */
  object-fit: cover; /* Ensures the images maintain their aspect ratio and cover the area */
  background-position: center;
}

/*end carousel*/


/*start exclusive store*/
/* Custom Styles for Exclusive Bracelet Collection */

.exclusive_colle {
    background: linear-gradient(to right, #f7e8f4, #e1c6d8); /* Subtle gradient for the background */
    padding-top: 50px;
    padding-bottom: 50px;
}

.exclusive_colle h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.exclusive_colle p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 25px;
}

.exclusive_colle .btn-pink {
    background-color: #e91e63; /* Pink button */
    border-color: #e91e63;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.exclusive_colle .btn-pink:hover {
    background-color: #d81b60;
    border-color: #d81b60;
    transform: translateY(-5px); /* Subtle hover effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Vertical centering using flexbox */
.exclusive_colle .col-md-6.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
   /* height: 100%; */
}

.exclusive_colle .container-fluid {
    max-width: 1140px; /* Limit the container width */
}

/*end exclusive store*/

/*start testimonial home page*/
footer.testi_footer {
    background-color: #ccc;
    color: #fff;
}
/*end testimonial home page*/


 /* start Parent Class for Cost Jewelry Section */
    .cost_jewelry {
      background-color: #f5f5f5;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .cost_jewelry .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 30px;
    }

    .cost_jewelry .card {
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease-in-out;
    }

    .cost_jewelry .card:hover {
      transform: scale(1.05);
    }

    .cost_jewelry .btn-custom {
      background-color: #000;
      color: white;
      border-radius: 25px;
      font-weight: bold;
      padding: 12px 30px;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
    }

    .cost_jewelry .btn-custom:hover {
      background-color: #d88e19;
    }

    /*end cosmatic section*/
    
    /*start breadcrumb css*/
    p#breadcrumbs {
    margin-top: 20px;
}
    /*end breadcrumb css*/

/*start shop filter css*/
/* Custom Sidebar Styling */
.custom_niraj {
    background-color: #f9f9f9; /* Light background */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    position: sticky;
    top: 20px; /* Keeps the sidebar fixed during scrolling */
    height: auto; /* Ensures it grows with content */
}

/* Layout for the shop page container */
.shop-page-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    align-items: flex-start; /* Align items to the top */
}

/* Sidebar styling: Positioned on the left */
.sidebar {
    width: 300px; /* Width of the sidebar */
    padding: 20px;
    margin-right: 20px;
    order: 1; /* Sidebar comes first */
    position: relative;
    height: 100%; /* Ensure full height */
}

/* Main content area (product listing) */
.main-content {
    flex: 1;
    padding-left: 20px;
    order: 2; /* Products come second */
}

/* Widget styling inside the sidebar */
.custom_niraj .widget {
    margin-bottom: 25px; /* Space between widgets */
}

/* Remove default list styles and set spacing */
.custom_niraj ul {
    padding: 0;
    margin: 0;
}

.custom_niraj ul li {
    list-style: none; /* Remove bullet points */
    margin: 12px 0; /* Space between filter items */
}

/* Style for filter links */
.custom_niraj ul li a {
    display: block;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth transition for background and color */
    text-transform: capitalize; /* Make the text more readable */
    box-sizing: border-box;
}

/* Hover effect for filter links */
.custom_niraj ul li a:hover {
    background-color: #0073aa; /* Blue background on hover */
    color: #fff; /* Change text color to white */
    border-color: #005b8f; /* Darker border on hover */
    transform: translateY(-2px); /* Slightly raise the item for 3D effect */
}

/* Focused link state */
.custom_niraj ul li a:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.5); /* Add a soft blue outline on focus */
}

/* Styling the Price Filter widget */
.custom_niraj .price_slider_amount {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 20px;
    border: 2px solid #ddd;
    box-sizing: border-box;
}

/* Styling the button inside the price filter */
.custom_niraj .price_slider_amount button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom_niraj .price_slider_amount button:hover {
    background-color: #005b8f;
    transform: translateY(-2px); /* Slight lift on hover for button */
}

/* Style for category widget */
.custom_niraj .widget_categories a {
    color: #0073aa;
    font-weight: 600;
}

.custom_niraj .widget_categories a:hover {
    color: #005b8f;
}

/* Ensure the sidebar extends to cover the height of the price filter */
.sidebar.custom_niraj {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items to the top of the sidebar */
    min-height: 100%; /* Makes the sidebar span the full height */
    box-sizing: border-box;
}
/* Hide entry-footer on all WooCommerce pages */
.woocommerce .entry-footer {
    display: none;
}

/* Hide entry-footer on the cart page */
.woocommerce-cart .entry-footer {
    display: none;
}

/* Hide entry-footer on other pages (like shop page, product page, etc.) */
.woocommerce-page .entry-footer {
    display: none;
}



/*end shop filter css*/

/*start cart and checkout page css*/
/* General Container Styling for Cart & Checkout Pages */
.woocommerce-cart, .woocommerce-checkout {
    max-width: 1200px; /* Set max-width for the pages */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light background color */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

/* Add spacing between sections */
.woocommerce-cart .cart-collaterals, 
.woocommerce-checkout .col2-set {
    margin-top: 30px;
}

/* Make cart table more readable */
.woocommerce-cart table, .woocommerce-checkout table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin-bottom: 30px;
}

.woocommerce-cart table th,
.woocommerce-checkout table th {
    background-color: #0073aa; /* Blue background for headers */
    color: white;
    text-align: left;
    padding: 12px 15px;
}

.woocommerce-cart table td,
.woocommerce-checkout table td {
    border-top: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    color: #555;
}

/* Improve buttons and inputs */
button, .button, input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover, input[type="submit"]:hover {
    background-color: #005b8f; /* Darker blue on hover */
}

/* Style the 'Proceed to Checkout' button */
.woocommerce-cart .wc-proceed-to-checkout {
    background-color: #28a745; /* Green color */
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
}

.woocommerce-cart .wc-proceed-to-checkout:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Cart & Checkout Form Inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
}

/* Style for the Order Summary (Cart Page) */
.woocommerce-cart .cart_totals {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart .cart_totals th {
    text-align: left;
    padding: 8px 0;
}

.woocommerce-cart .cart_totals td {
    padding: 8px 0;
}

/* Styling the Checkout Form (e.g., Billing, Shipping) */
.woocommerce-checkout .col-1, .woocommerce-checkout .col-2 {
    background-color: #fff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Checkout Billing/Shipping Form Label */
.woocommerce-checkout label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

/* Style for the Order Review Section */
.woocommerce-checkout .order-review, 
.woocommerce-checkout .order-details {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

/* Highlight the "Place Order" button */
.woocommerce-checkout #place_order {
    background-color: #28a745; /* Green color */
    padding: 20px 30px;
    font-size: 18px;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease;
    width: 100%;
}

.woocommerce-checkout #place_order:hover {
    background-color: #218838; /* Darker green on hover */
}


/*end cart page and checkout [age*/

/*start my account page*/
/* General Container Styling for My Account Page */
.woocommerce-account {
    max-width: 1200px; /* Set max-width for the page */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Heading for My Account Section */
.woocommerce-account h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Layout for Tabs */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background-color: #0073aa; /* Blue background */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 10px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #005b8f; /* Darker blue on hover */
}

/* Active tab styling */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.current a {
    background-color: #005b8f; /* Highlight the active tab */
}

/* Content Styling for My Account Sections */
.woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* My Orders Section */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.woocommerce-account .woocommerce-orders-table th {
    background-color: #0073aa; /* Blue background */
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.woocommerce-account .woocommerce-orders-table td {
    padding: 12px 15px;
    border-top: 1px solid #ddd;
}

/* Order Status and Actions Styling */
.woocommerce-account .woocommerce-orders-table .order-status {
    font-weight: bold;
    color: #28a745; /* Green for "Completed" orders */
}

.woocommerce-account .woocommerce-orders-table .order-actions a {
    color: #0073aa;
    font-weight: bold;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-orders-table .order-actions a:hover {
    color: #005b8f;
}

/* My Addresses Section */
.woocommerce-account .woocommerce-addresses {
    margin-top: 40px;
}

.woocommerce-account .woocommerce-addresses .address {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce-addresses .address h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.woocommerce-account .woocommerce-addresses .address p {
    font-size: 14px;
    color: #555;
}

/* My Account Form (Edit Account Information) */
.woocommerce-account .woocommerce-MyAccount-content .my-account-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-content .my-account-form input[type="text"], 
.woocommerce-account .woocommerce-MyAccount-content .my-account-form input[type="email"], 
.woocommerce-account .woocommerce-MyAccount-content .my-account-form input[type="password"], 
.woocommerce-account .woocommerce-MyAccount-content .my-account-form select, 
.woocommerce-account .woocommerce-MyAccount-content .my-account-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
}

.woocommerce-account .woocommerce-MyAccount-content .my-account-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .my-account-form input[type="submit"]:hover {
    background-color: #005b8f;
}

/*end my account page*/


/*start media query*/
@media (max-width: 767px) {
    .exclusive_colle h3 {
        font-size: 2rem;
    }

    .exclusive_colle p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .exclusive_colle .btn-pink {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/*end media query*/