:root {
    --primary-color: #772022;
    --swiper-theme-color: #007aff;
    --color-white: #fff;
    --color-black: #000;
    --color-blue: #0070d2;
    --color-green: #1fa042;
    --color-primary: #00a1e0;
    --color-red: #c00;
    --color-success: var(--color-green);
    --color-danger: var(--color-red);
    --color-light-blue: #7ed0ee;
    --color-grey1: #f9f9f9;
    --color-grey2: #eee;
    --color-grey3: #ccc;
    --color-grey4: #999;
    --color-grey5: #666;
    --color-grey6: #444;
    --color-grey7: #222;
    --color-grey8: #333;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

#All-Jewellery {
    width: 100%;
    background: var(--color-grey2);
    padding: 60px 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    margin-bottom: 40px;
}

.jewellery-card {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.jewellery-card img {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 12px;
}

.jewellery-card img:hover {
    transform: scale(1.1);
    transition: 0.8s all ease;
}

.jewellery-card h5 {
    font-weight: 600;
}

.jewellery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-pagination {
    text-align: center;
    margin-top: 40px;
}

.content-pagination a {
    text-decoration: none;
    color: #444;
    font-size: 18px;
    margin: 0 5px;
}

.content-pagination a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.content-pagination a:hover {
    color: var(--primary-color);
}

@media (max-width:768px) {

    .section-title h2 {
        font-size: 30px;
    }

    .jewellery-card img {
        max-width: 100%;
    }

}

@media (max-width:576px) {

    .section-title h2 {
        font-size: 26px;
    }

    .jewellery-card img {
        max-width: 100%;
    }

}



#All-Jewellery-filter {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
    padding: 30px 0;
}

#All-Jewellery-filter .title {
    font-size: 32px;
    font-weight: 700;
}

#All-Jewellery-filter .title span {
    font-size: 18px;
    color: #777;
}

.filter-bar {
    margin-top: 20px;
}

.filter-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-select {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    transition: .3s;
}

.filter-btn span {
    font-weight: bold;
    margin-right: 5px;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.show-more {
    color: #555;
    cursor: pointer;
    font-size: 14px;
}

.show-more:hover {
    color: var(--primary-color);
}

.sort-select {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

@media(max-width:768px) {

    .sort-box {
        margin-top: 15px;
    }

}

/* Filter Side bar menu  */

.filter-box {
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.filter-content {
    background: white;
    border-radius: 20px;
    padding: 15px;
    max-height: auto;
    overflow-y: auto;
}

.filter-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.filter-dropdown {
    display: none;
    padding-top: 15px;
    transition: 0.8s all ease;
}

.filter-dropdown.active {
    display: block;

}

.price-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.price-tags button {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.info-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 100%;
}

.filter-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.clear-btn {
    flex: 1;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid #8b2a2a;
    background: transparent;
    color: #8b2a2a;
}

.result-btn {
    flex: 1;
    padding: 4px;
    border-radius: 30px;
    background: #8b2a2a;
    color: white;
    border: none;
}

#Filter-Collection {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}



#Tanishq-Assurance-design{
    background:#f5f5f5;
    padding:80px 0;
}

/* Main Container */
.assurance-container{
    border:2px solid #d8d2c9;
    border-radius:50px;
    padding:60px 40px;
    background:#fafafa;
}

/* Heading */
.assurance-title{
    font-size:42px;
    font-weight:500;
    color:#3c0d0d;
}

.assurance-subtitle{
    font-size:20px;
    color:#6b6b6b;
    margin-top:10px;
    margin-bottom:50px;
}

/* Card Layout */
.assurance-card{
    padding:20px;
}

/* Icons */
.assurance-card img{
    width:90px;
    margin-bottom:15px;
}

/* Text */
.assurance-card p{
    font-size:20px;
    font-weight:500;
    color:#3c0d0d;
    line-height:1.4;
}

/* Hover */
.assurance-card:hover img{
    transform:scale(1.08);
    transition:0.3s;
}

/* Tablet */
@media(max-width:992px){

.assurance-title{
    font-size:34px;
}

.assurance-subtitle{
    font-size:18px;
}

.assurance-card img{
    width:70px;
}

.assurance-card p{
    font-size:18px;
}

}

/* Mobile */
@media(max-width:576px){

#Tanishq-Assurance-design{
    padding:50px 10px;
}

.assurance-container{
    padding:40px 15px;
    border-radius:30px;
}

.assurance-title{
    font-size:24px;
}

.assurance-subtitle{
    font-size:14px;
}

.assurance-card img{
    width:55px;
}

.assurance-card p{
    font-size:14px;
}

}

#Brand-description {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

.brand-border {
    border: 2px solid var(--primary-color);
    padding: 20px;
}

.brand-border h2,
.brand-border h4 {
    color: var(--primary-color);
}

.back-border p {
    text-align: justify;
}

.brand-border p>a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;

}


