/*--------------------------------------------------------------------------
 * PAGES CSS - PRIVACY POLICY, TERMS & CONDITIONS, RETURNS, SHIPPING, FAQ
 *--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
 * BREADCRUMB STYLES
 *--------------------------------------------------------------------------*/
.tf-breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.tf-breadcrumb .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tf-breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.tf-breadcrumb .breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.tf-breadcrumb .breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #ccc;
    font-size: 18px;
    font-weight: 300;
}

.tf-breadcrumb .breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.tf-breadcrumb .breadcrumb-list li a:hover {
    color: #e57661;
}

.tf-breadcrumb .breadcrumb-list li.active {
    color: #e57661;
    font-weight: 600;
}

.tf-breadcrumb .breadcrumb-list li .home-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
}

.tf-breadcrumb .breadcrumb-list li .home-icon i {
    font-size: 16px;
    color: #e57661;
}

.tf-breadcrumb .breadcrumb-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/*--------------------------------------------------------------------------
 * BREADCRUMB RESPONSIVE
 *--------------------------------------------------------------------------*/
@media (max-width: 768px) {
    .tf-breadcrumb {
        padding: 12px 0;
    }

    .tf-breadcrumb .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tf-breadcrumb .breadcrumb-list li {
        font-size: 13px;
    }

    .tf-breadcrumb .breadcrumb-list li:not(:last-child)::after {
        margin: 0 6px;
        font-size: 16px;
    }

    .tf-breadcrumb .breadcrumb-title {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .tf-breadcrumb {
        padding: 10px 0;
    }

    .tf-breadcrumb .container {
        padding: 0 15px;
    }

    .tf-breadcrumb .breadcrumb-list {
        gap: 3px;
        flex-wrap: wrap;
    }

    .tf-breadcrumb .breadcrumb-list li {
        font-size: 12px;
    }

    .tf-breadcrumb .breadcrumb-list li:not(:last-child)::after {
        margin: 0 4px;
        font-size: 14px;
    }

    .tf-breadcrumb .breadcrumb-list li .home-icon i {
        font-size: 14px;
    }

    .tf-breadcrumb .breadcrumb-title {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------------------
 * PAGE TITLE SECTION
 *--------------------------------------------------------------------------*/
.tf-page-title {
    background: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
}

.tf-page-title .heading {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    display: inline-block;
}

.tf-page-title .heading::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e57661;
}

/*--------------------------------------------------------------------------
 * MAIN CONTENT AREA
 *--------------------------------------------------------------------------*/
.tf-main-area-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.tf-main-area-page h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.tf-main-area-page h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e5e5;
}

.tf-main-area-page h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.tf-main-area-page p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.tf-main-area-page strong {
    color: #1a1a1a;
    font-weight: 600;
}

.tf-main-area-page a {
    color: #e57661;
    text-decoration: none;
}

.tf-main-area-page a:hover {
    text-decoration: underline;
    color: #c95f44;
}

.tf-main-area-page ul,
.tf-main-area-page ol {
    margin-bottom: 18px;
    padding-left: 20px;
}

.tf-main-area-page li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.tf-main-area-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tf-main-area-page th,
.tf-main-area-page td {
    border: 1px solid #e5e5e5;
    padding: 12px;
    text-align: left;
}

.tf-main-area-page th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

/*--------------------------------------------------------------------------
 * CONTACT INFO BLOCK
 *--------------------------------------------------------------------------*/
.contact-info-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.contact-info-block p {
    margin-bottom: 10px;
}

.contact-info-block p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------------------
 * ALERT BOXES
 *--------------------------------------------------------------------------*/
.alert-box {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-box.info {
    background: #e8f4f8;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

.alert-box.warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.alert-box.success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-box.danger {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

/*--------------------------------------------------------------------------
 * SPACING UTILITIES
 *--------------------------------------------------------------------------*/
.mt_10 {
    margin-top: 10px;
}
.mt_15 {
    margin-top: 15px;
}
.mt_20 {
    margin-top: 20px;
}
.mt_25 {
    margin-top: 25px;
}
.mt_30 {
    margin-top: 30px;
}
.mt_40 {
    margin-top: 40px;
}
.mt_50 {
    margin-top: 50px;
}

.mb_10 {
    margin-bottom: 10px;
}
.mb_15 {
    margin-bottom: 15px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_40 {
    margin-bottom: 40px;
}

.pt_20 {
    padding-top: 20px;
}
.pt_40 {
    padding-top: 40px;
}
.pb_20 {
    padding-bottom: 20px;
}
.pb_40 {
    padding-bottom: 40px;
}

/*--------------------------------------------------------------------------
 * RESPONSIVE
 *--------------------------------------------------------------------------*/
@media (max-width: 768px) {
    .tf-page-title {
        padding: 40px 0;
    }

    .tf-page-title .heading {
        font-size: 28px;
    }

    .tf-main-area-page h4 {
        font-size: 24px;
    }

    .tf-main-area-page h5 {
        font-size: 18px;
    }

    .tf-main-area-page p,
    .tf-main-area-page li {
        font-size: 14px;
    }

    .tf-main-area-page {
        padding: 0 15px 40px;
    }
}

@media (max-width: 576px) {
    .tf-page-title .heading {
        font-size: 24px;
    }

    .contact-info-block {
        padding: 15px;
    }
}

/*--------------------------------------------------------------------------
 * GEMSTONE CATEGORIES SECTION CUSTOM COLUMNS
 *--------------------------------------------------------------------------*/
.gemstone-col-custom-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.gemstone-col-custom-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

/*--------------------------------------------------------------------------
 * RESPONSIVE
 *--------------------------------------------------------------------------*/
@media (max-width: 992px) {
    .gemstone-col-custom-2-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .gemstone-col-custom-2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .gemstone-col-custom-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gemstone-col-custom-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*--------------------------------------------------------------------------
 * TRENDING PRODUCTS SECTION
 *--------------------------------------------------------------------------*/
.trending-prod .product-colors {
    margin-top: 8px;
}

.trending-prod .color-dot {
    border: 1px solid #ddd;
    transition: transform 0.2s;
}

.trending-prod .color-dot:hover {
    transform: scale(1.2);
}

.trending-prod .more-colors {
    font-size: 10px;
    color: #666;
    margin-left: 5px;
}
