@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Define custom font families and colors */
:root {
    --font-display: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
    --primary-black: #1c1c1c;
    --accent-gold: #a59778;
}

.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

.text-primary-black {
    color: var(--primary-black) !important;
}

.bg-primary-black {
    background-color: var(--primary-black) !important;
}

.btn-primary-black {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: white;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary-black:hover {
    background-color: #333333;
    /* Darker shade for hover */
    border-color: #333333;
    color: white;
}

.btn-outline-primary-black {
    border-color: var(--primary-black);
    color: var(--primary-black);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline-primary-black:hover {
    background-color: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

/* Custom underline effect (mimicking original) */
.header-link {
    position: relative;
    text-decoration: none;
    color: inherit;
}

.header-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.header-link:hover::after {
    width: 100%;
}

.product-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.card {
    border: none; /* Remove default border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow for lift */
    transition: transform 0.2s;
    border-radius: 0.75rem;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px); /* Lift card on hover */
}
/* UPDATED: Apply fixed height to the image/carousel area and all inner images */
.card-img-top,
.carousel-item img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.card-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #212529;
}
.card-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d6efd; /* Use primary color for price */
    margin-bottom: 0.5rem;
}

/* Custom carousel style to make controls more subtle */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(
        1
    ); /* Make the controls visible on dark placeholder images */
}

.product-image {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}
.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.breadcrumb a {
    color: #d85ca4;
    text-decoration: none;
}
.btn-purple {
    background: #6c146c;
    border-color: purple;
}
.btn-purple:hover {
    background: #853e85;
    border-color: purple;
}
.btn-rba {
    border: 2px solid #BCA7D8;
    background: none;
    color: #3a3a3a;
}
.btn-rba:hover {
    background: #E8E0F3;
    border: 0;
    color: #333;
}
.pagination a {
    color: #333;
}
.pagination a:hover {
    color: #6c146c;
}
.page-link {
    border: 1px solid #bca7d8;
}
.page-link.active {
    background: #bca7d8;
    color: #3a3a3a;
    border-color: #c3ade1;
    /*background: #c27057;
    color: #fff;
    border-color: #ab7463;*/
    /*
    background: #6c146c;
    color: #fff;
    border-color: purple;*/
}

#categoryMenu.btn-primary {
    background: #c27057;
    color: #fff;
    border-color: #ab7463;
}

.carousel-item > div > div   {
  padding-bottom: 15px; /* Adjust as needed for the desired gap */
}
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(60%) sepia(30%) saturate(300%) hue-rotate(10deg) brightness(0.9);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.jewel-card {
    position: relative;
    overflow: hidden;
    /*border-radius: 1rem;*/
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.jewel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.jewel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jewel-card:hover img {
    transform: scale(1.05);
}

.jewel-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgb(178 102 60 / 70%);
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 2px 2px #4e230a;
    letter-spacing: 0.5px;
}


.ui-autocomplete {
    z-index: 9999;
    border-radius: 0 0 6px 6px;
    margin-top: 6px !important;
    border-radius: 8px;
    border: 1px solid #dee2e6 !important;
    padding: 10px;
}

.card-price {
    color: #3a3a3a/*#c27057*/;
}

.carousel-control-next, .carousel-control-prev {
    width: 5%;
}

.bronze-btn {
    background: linear-gradient(135deg, #b08d57, #d6b370);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(176, 141, 87, 0.3);
}
.bronze-btn:hover {
    background: linear-gradient(135deg, #d6b370, #b08d57);
    box-shadow: 0 0 10px rgba(176, 141, 87, 0.5);
    transform: translateY(-1px);
    color: #fff;
}

.text-bronze {
    background: linear-gradient(135deg, #b08d57, #d6b370);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card {
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-lilac {
    background: none;
    border: 2px solid #BCA7D8;
    color: #3a3a3a;
}
.btn-lilac:hover {
    background: #E8E0F3;
    color: #333;
}

.text-grey {
    color: #3a3a3a;
}

/* pg a*/
.btn-bg-lilac {
    background: #946aa9;
    color: #fff;
}
.btn-bg-lilac:hover {
    background: #c999e1;
    color: #fff;
}
.banner-heading {
    font-size: 3.2rem;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .banner-heading {
        font-size: 2rem;
    }
}