/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* ===== MODERNIZED HERO SECTION ===== */
.margin_120_95 .main_title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 10px;
}
.margin_120_95 .main_title h1 strong {
    color: #9b2e67;
}
.margin_120_95 .main_title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* ===== IMPROVED FEATURE BOXES (homepage) ===== */
.box_feat {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}
.box_feat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(155,46,103,0.12);
}
.box_feat h3 {
    font-weight: 600;
    color: #333;
}
.box_feat p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* ===== CATEGORY BOXES ===== */
.box_cat_home {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid transparent;
    text-decoration: none;
}
.box_cat_home:hover {
    border-color: #9b2e67;
    box-shadow: 0 6px 25px rgba(155,46,103,0.1);
    transform: translateY(-3px);
    text-decoration: none;
}
.box_cat_home h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.box_cat_home h5 {
    font-size: 13px;
    color: #9b2e67;
    margin: 0;
}

/* ===== BUSINESS LISTING CARDS ===== */
.box_list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.box_list:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.box_list figure {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.box_list figure img {
    transition: transform 0.4s ease;
}
.box_list:hover figure img {
    transform: scale(1.05);
}
.box_list .wrapper {
    padding: 20px;
}
.box_list .wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.box_list .wrapper small {
    color: #9b2e67;
    font-weight: 500;
    font-size: 13px;
}
.box_list ul {
    border-top: 1px solid #f0f0f0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn_1 {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}
.btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155,46,103,0.25);
}
.btn_1.medium {
    padding: 10px 25px;
    font-size: 14px;
}
a.homepage_designers {
    background: #74d1c6 !important;
    border-color: #74d1c6 !important;
}
a.homepage_designers:hover {
    background: #5ec4b8 !important;
    border-color: #5ec4b8 !important;
}

/* ===== BLOG NEWS CARDS (homepage) ===== */
a.box_news_home {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 25px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}
a.box_news_home:hover {
    box-shadow: 0 8px 30px rgba(155,46,103,0.12);
    transform: translateY(-3px);
    text-decoration: none;
}
a.box_news_home figure {
    margin: 0;
    overflow: hidden;
}
a.box_news_home figure img {
    transition: transform 0.4s ease;
}
a.box_news_home:hover figure img {
    transform: scale(1.05);
}
a.box_news_home h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 15px 20px 8px;
    line-height: 1.4;
}
a.box_news_home p {
    font-size: 13px;
    color: #777;
    margin: 0 20px 10px;
    line-height: 1.5;
}
a.box_news_home .badge {
    margin: 0 20px 15px;
    display: inline-block;
}

/* ===== LANDING PAGE INTRO ===== */
.landing-intro {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.landing-intro h2,
.landing-intro h3 {
    color: #9b2e67;
    font-weight: 600;
}
.landing-intro strong {
    color: #333;
}
.landing-intro ul {
    padding-right: 20px;
}
.landing-intro li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
}
.landing-intro li:before {
    content: "•";
    color: #9b2e67;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* ===== IMPROVED SEARCH/FILTER BAR ===== */
.filters_listing {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 2px solid #9b2e67;
}
#indexheader {
    background: linear-gradient(135deg, #f8f0f4 0%, #f5f8fa 100%);
    padding: 30px 0;
    text-align: center;
}
#indexheader h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 5px;
}
#indexheader h2 {
    font-size: 18px;
    font-weight: 400;
    color: #777;
}

/* ============================================================
   PROFILE PAGE — MODERN REDESIGN
   ============================================================ */

/* --- Main content cards --- */
.box_general_3 {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    padding: 35px;
    margin-bottom: 25px;
    transition: box-shadow .3s ease;
}
.box_general_3:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,.09);
}
.box_general_3 hr {
    border-color: #f0f0f0;
    margin: 30px -35px;
}

/* --- Sticky tab navigation --- */
#secondary_nav {
    background: linear-gradient(135deg, #9b2e67 0%, #7a2352 100%) !important;
    border-radius: 14px 14px 0 0 !important;
    padding: 0 !important;
    bottom: 0 !important;
    overflow: hidden;
}
#secondary_nav .container { padding: 0; }
#secondary_nav ul { margin: 0; display: flex; }
#secondary_nav ul li { flex: 1; text-align: center; }
#secondary_nav ul li a {
    font-weight: 600;
    color: rgba(255,255,255,.75) !important;
    padding: 16px 10px !important;
    display: block;
    font-size: 14px;
    transition: all .25s ease;
    border-bottom: 3px solid transparent;
    letter-spacing: .3px;
}
#secondary_nav ul li a:hover,
#secondary_nav ul li a.active {
    color: #fff !important;
    background: rgba(255,255,255,.1);
    border-bottom-color: #fff;
}
#secondary_nav.is_stuck {
    border-radius: 0 !important;
    box-shadow: 0 4px 20px rgba(155,46,103,.2) !important;
}

/* --- Profile card --- */
.box_general_3 .profile figure {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.box_general_3 .profile figure img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    transition: transform .5s ease;
}
.box_general_3 .profile figure:hover img {
    transform: scale(1.03);
}
.box_general_3 .profile small {
    display: inline-block;
    background: linear-gradient(135deg, #f8e8f0 0%, #fdf5f9 100%);
    color: #9b2e67;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: .3px;
}
.box_general_3 .profile h1 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}
.box_general_3 .profile .rating {
    margin-bottom: 8px;
}
.box_general_3 .profile .rating .icon_star {
    font-size: 16px;
}

/* Stats badges */
.profile ul.statistic {
    margin: 12px 0;
}
.profile ul.statistic li {
    background: linear-gradient(135deg, #9b2e67 0%, #b8447f 100%) !important;
    border-radius: 20px !important;
    padding: 7px 16px 5px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: .2px;
}

/* Contact list */
.profile ul.contacts {
    margin-top: 20px !important;
    padding: 0;
}
.profile ul.contacts li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #555;
}
.profile ul.contacts li:last-child { border-bottom: none; }
.profile ul.contacts li i.fa {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8f0f4;
    color: #9b2e67;
    font-size: 14px;
    flex-shrink: 0;
}
.profile ul.contacts li a {
    color: #9b2e67;
    font-weight: 500;
    transition: color .2s;
}
.profile ul.contacts li a:hover { color: #7a2352; }

/* --- Section headers --- */
.indent_title_in {
    padding-right: 0 !important;
    margin-bottom: 25px !important;
    display: flex;
    align-items: center;
    gap: 14px;
}
.indent_title_in i {
    position: static !important;
    font-size: 28px !important;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8e8f0 0%, #fdf5f9 100%);
    color: #9b2e67 !important;
    flex-shrink: 0;
}
.indent_title_in h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a2e;
    margin: 0;
}
.indent_title_in p {
    color: #888;
    font-size: 13px !important;
}

/* --- Content wrapper (removes old inline padding) --- */
.wrapper_indent {
    padding-right: 0 !important;
    padding-left: 0;
}

/* --- Specialties as modern pills --- */
.specialties-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.specialty-pill {
    display: inline-block;
    background: #f8f0f4;
    color: #9b2e67;
    padding: 7px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 500;
    transition: all .25s ease;
    border: 1px solid transparent;
    text-decoration: none;
}
.specialty-pill:hover {
    background: #9b2e67;
    color: #fff;
    text-decoration: none;
    border-color: #9b2e67;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(155,46,103,.2);
}
.wrapper_indent h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    margin-top: 5px;
}
.wrapper_indent .bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wrapper_indent .bullets li {
    margin-bottom: 0;
}
.wrapper_indent .bullets li a {
    display: inline-block;
    background: #f8f0f4;
    color: #9b2e67;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all .25s ease;
    border: 1px solid transparent;
    margin-bottom: 8px;
}
.wrapper_indent .bullets li a:hover {
    background: #9b2e67;
    color: #fff;
    text-decoration: none;
    border-color: #9b2e67;
}
.wrapper_indent .bullets li:before { display: none !important; }

/* --- Areas list --- */
.wrapper_indent > ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wrapper_indent > ul > li {
    background: #f5f7fa;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e8ecf0;
    transition: all .2s;
}
.wrapper_indent > ul > li:hover {
    border-color: #9b2e67;
    color: #9b2e67;
}

/* --- Education list --- */
ul.list_edu {
    list-style: none !important;
    padding: 0 !important;
}
ul.list_edu li {
    background: #fafbfc;
    border-radius: 12px;
    padding: 16px 20px !important;
    margin-bottom: 10px;
    border-right: 4px solid #9b2e67;
    line-height: 1.6 !important;
}
ul.list_edu li:before { display: none !important; }
ul.list_edu li strong {
    color: #1a1a2e;
    font-weight: 600 !important;
    font-size: 15px;
}
ul.list_edu li p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #777;
}

/* --- Price table --- */
.table-responsive { border-radius: 12px; overflow: hidden; }
.box_general_3 .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}
.box_general_3 .table thead th {
    background: linear-gradient(135deg, #9b2e67 0%, #b8447f 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border: none;
}
.box_general_3 .table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    border-color: #f0f0f0;
    color: #555;
}
.box_general_3 .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fdf9fb;
}
.box_general_3 .table tbody tr:hover {
    background-color: #f8e8f0;
}

/* --- Gallery section --- */
#section_gallery .box_general_3 {
    padding: 25px;
}
.rslides li img { border-radius: 12px; }
.rslides label {
    display: block;
    text-align: center;
    padding: 12px 0 4px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}
.rslides_tabs { text-align: center; padding: 10px 0; }
.rslides_tabs li { display: inline-block; float: none !important; }

/* --- Review summary --- */
#review_summary {
    background: linear-gradient(135deg, #9b2e67 0%, #7a2352 100%) !important;
    border-radius: 16px !important;
    padding: 28px 16px !important;
}
#review_summary strong {
    font-size: 3.5rem !important;
    font-weight: 800;
    line-height: 1;
}
#review_summary .icon_star { font-size: 18px; }
#review_summary small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    opacity: .85;
}

/* --- Review progress bars --- */
.reviews-container .progress {
    height: 10px;
    border-radius: 5px;
    background: #f0f0f0;
}
.reviews-container .progress-bar {
    background: linear-gradient(90deg, #9b2e67 0%, #d4649a 100%) !important;
    border-radius: 5px;
}

/* --- Review cards --- */
.reviews-container .review-box { margin-bottom: 20px; }
.reviews-container .rev-content {
    border: none !important;
    border-radius: 16px !important;
    background: #fafbfc;
    padding: 24px !important;
    transition: box-shadow .3s;
}
.reviews-container .rev-content:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.reviews-container .rev-info {
    font-size: 12px !important;
    color: #999;
    margin-bottom: 8px;
}
.reviews-container .rev-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}
.reviews-container .rev-text h6 {
    color: #9b2e67;
    font-weight: 600;
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* --- Write review & Contact form --- */
.box_general_3.write_review {
    border: 2px dashed #e0d0d8;
    background: #fdf9fb;
}
.box_general_3.write_review h1 {
    color: #9b2e67 !important;
    font-weight: 700 !important;
}
.box_general_3 .form-control {
    border-radius: 10px;
    border: 1.5px solid #e1e8ed;
    padding: 10px 16px;
    font-size: 14px;
    transition: border-color .25s, box-shadow .25s;
}
.box_general_3 .form-control:focus {
    border-color: #9b2e67;
    box-shadow: 0 0 0 3px rgba(155,46,103,.1);
}
.box_general_3 textarea.form-control { min-height: 100px; }

/* CTA buttons */
.box_general_3 .btn_1,
.box_general_3 .text-left .btn_1,
.box_general_3 a.btn_1 {
    background: linear-gradient(135deg, #9b2e67 0%, #b8447f 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(155,46,103,.2);
}
.box_general_3 .btn_1:hover,
.box_general_3 a.btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155,46,103,.3);
    background: linear-gradient(135deg, #b8447f 0%, #9b2e67 100%);
}

/* --- Booking sidebar --- */
.booking {
    border-radius: 16px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 4px 25px rgba(155,46,103,.1) !important;
}
.booking .title {
    background: linear-gradient(135deg, #9b2e67 0%, #7a2352 100%) !important;
    margin: -35px -35px 25px !important;
    padding: 28px 30px !important;
    border-radius: 0 !important;
}
.booking .title h3 {
    color: #fff !important;
    font-weight: 700;
    font-size: 22px !important;
}
.booking .title label {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    margin-top: 6px;
    display: block;
}
.booking .form-control {
    border-radius: 10px;
    border: 1.5px solid #e1e8ed;
    padding: 10px 16px;
    font-size: 14px;
}
.booking .form-control:focus {
    border-color: #9b2e67;
    box-shadow: 0 0 0 3px rgba(155,46,103,.1);
}
.booking .btn_1,
.booking input[type="submit"].btn_1 {
    background: linear-gradient(135deg, #9b2e67 0%, #b8447f 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(155,46,103,.25);
    transition: all .3s;
}
.booking .btn_1:hover,
.booking input[type="submit"].btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155,46,103,.35);
}

/* --- More businesses sidebar --- */
.morechef_title {
    font-size: 20px !important;
    font-weight: 700;
    color: #1a1a2e;
    padding-bottom: 15px !important;
    margin-bottom: 5px;
    border-bottom: 3px solid #9b2e67;
    display: inline-block;
}
a .morechef_list,
a:hover .morechef_list {
    text-decoration: none;
}
.morechef_list {
    border-radius: 14px !important;
    box-shadow: 0 2px 15px rgba(0,0,0,.05) !important;
    border: 1px solid #f0f0f0;
    transition: all .3s ease !important;
    padding: 20px 100px 15px 15px !important;
}
.morechef_list:hover {
    box-shadow: 0 6px 25px rgba(155,46,103,.1) !important;
    transform: translateY(-3px);
}
.morechef_list figure {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.morechef_list h3 {
    font-weight: 700 !important;
    color: #1a1a2e;
}
.morechef_list p { color: #777; }
.morechef_list small { color: #9b2e67 !important; }

/* --- Breadcrumb on profile --- */
#breadcrumb { background: #f8f9fa; }

/* --- Rating stars color --- */
.icon_star.voted { color: #f5a623 !important; }

/* --- Profile page responsive --- */
@media (max-width: 991px) {
    .box_general_3 { padding: 25px; }
    .box_general_3 hr { margin: 20px -25px; }
    .booking .title { margin: -25px -25px 20px !important; }
    #secondary_nav ul li a { font-size: 12px; padding: 12px 6px !important; }
}
@media (max-width: 767px) {
    .box_general_3 .profile h1 { font-size: 24px; }
    .indent_title_in { flex-wrap: wrap; }
    .indent_title_in i { width: 42px; height: 42px; font-size: 22px !important; border-radius: 10px; }
    .indent_title_in h3 { font-size: 18px !important; }
    #secondary_nav ul { flex-wrap: wrap; }
    #secondary_nav ul li { flex: 0 0 50%; }
    #secondary_nav ul li a { font-size: 13px; padding: 12px 8px !important; }
    .wrapper_indent > ul { gap: 6px; }
    .morechef_list { border-radius: 12px !important; }
}

/* ===== BLOG ARTICLE ===== */
.bloglist.singlepost h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.4;
}
.bloglist.singlepost .postmeta {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* ===== IMPROVED 404 PAGE ===== */
#error_page {
    padding: 80px 0;
}
#error_page h2 {
    font-size: 72px;
    font-weight: 700;
    color: #9b2e67;
    margin-bottom: 15px;
}
#error_page p {
    font-size: 18px;
    color: #666;
}
#error_page .box_cat_home {
    margin-bottom: 15px;
}

/* ===== PAGINATION ===== */
.pagination .page-item .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: none;
    color: #555;
    font-weight: 500;
    padding: 8px 14px;
}
.pagination .page-item.active .page-link {
    background: #9b2e67;
    color: #fff;
}
.pagination .page-item .page-link:hover {
    background: #f8f0f4;
    color: #9b2e67;
}

/* ===== RATING STARS ===== */
.icon_star.voted {
    color: #ffc107;
}

/* ===== SMART AGENT BUTTON ===== */
a.smartagent {
    background: linear-gradient(135deg, #9b2e67, #74d1c6) !important;
    border: none !important;
    color: #fff !important;
}

/* ===== GENERAL POLISH ===== */
main {
    background: #f8f9fa;
}
h1, h2, h3 {
    font-family: 'Heebo', sans-serif;
}
.margin_60 {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ===== RESPONSIVE TWEAKS ===== */

/* Tablet: keep arrows to the side since boxes are still in a row with col-md-4 */
@media (min-width: 768px) and (max-width: 991px) {
    .box_feat {
        padding: 120px 15px 20px 15px !important;
        background-size: 60px !important;
        background-position: center 30px !important;
    }
    .box_feat span {
        position: absolute !important;
        top: 50% !important;
        right: auto !important;
        left: -30px !important;
        margin: -25px 0 0 0 !important;
        width: 50px !important;
        height: 50px !important;
        transform: rotate(-180deg) !important;
    }
    .box_feat h3 {
        font-size: 16px;
    }
    .box_feat p {
        font-size: 12px;
    }
}

/* Mobile: stack vertically, arrows point down between boxes */
@media (max-width: 767px) {
    .margin_120_95 .main_title h1 {
        font-size: 28px;
    }
    #indexheader h1 {
        font-size: 24px;
    }
    a.box_news_home {
        margin-bottom: 15px;
    }
    .box_feat {
        padding: 130px 15px 20px 15px !important;
        background-size: 80px !important;
        background-position: center 30px !important;
        margin-bottom: 20px !important;
    }
    .box_feat span {
        position: relative !important;
        display: block !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 5px auto 10px !important;
        transform: rotate(90deg) !important;
        width: 50px !important;
        height: 50px !important;
    }
    .row.add_bottom_30 > div[class*="col-"] {
        padding-bottom: 0;
    }
    #error_page h2 {
        font-size: 48px;
    }
}

/* ===== SOCIAL SHARE BUTTONS ===== */
.social-share { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.social-share span { font-size:13px; color:#666; margin-left:4px; }
.social-share a {
    display:inline-flex; align-items:center; justify-content:center;
    width:34px; height:34px; border-radius:50%;
    color:#fff; font-size:15px;
    transition: opacity .2s, transform .2s;
}
.social-share a:hover { opacity:.85; transform:scale(1.1); color:#fff; }
.social-share .share-whatsapp { background:#25D366; }
.social-share .share-facebook { background:#1877F2; }
.social-share .share-twitter { background:#1DA1F2; }
.social-share .share-email { background:#666; }
.social-share .share-copy { background:#9b2e67; }
