/**
 * Gas Fireplace Locations - Frontend Styles
 * Matches Lestin theme styling
 */

/* ==========================================================================
   Typography - H1 and H2
   ========================================================================== */

.location-single-page h1,
.location-single-page .entry-title,
.location-title {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.location-single-page h2,
.section-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #dc3545;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================================================
   Location Single Page
   ========================================================================== */

.location-single-page {
    padding: 0;
}

/* Location Header
   ========================================================================== */
.location-header {
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.location-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.2;
}

.location-rating-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-rating-header .rating-stars {
    color: #ffa726;
    font-size: 18px;
}

.location-rating-header .rating-average {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.location-rating-header .rating-count {
    font-size: 14px;
    color: #777;
}

.location-address-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
}

.location-address-header i {
    color: #ef6c00;
}

/* Gallery Section
   ========================================================================== */
.location-gallery-section {
    margin-bottom: 40px;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 150px;
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item.gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.gallery-more {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.gallery-more a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

/* Content Layout
   ========================================================================== */
.location-content-wrapper {
    margin-top: 40px;
}

.location-main-column {
    padding-right: 30px;
}

.location-section {
    margin-bottom: 40px;
}

.location-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ef6c00;
    color: #222;
    line-height: 1.3;
}

.location-section .section-content {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.location-section .section-content h2,
.location-section .section-content h3,
.location-section .section-content h4 {
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
}

.location-section .section-content h2 {
    font-size: 24px;
}

.location-section .section-content h3 {
    font-size: 20px;
}

.location-section .section-content h4 {
    font-size: 18px;
}

.location-section .section-content p {
    margin-bottom: 15px;
}

.location-section .section-content ul,
.location-section .section-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.location-section .section-content li {
    margin-bottom: 8px;
}

.location-section .section-content strong {
    font-weight: 600;
    color: #333;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

/* Reviews Container */
.gf-reviews-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.gf-reviews-header {
    margin-bottom: 35px;
}

.gf-reviews-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #222;
    padding-bottom: 15px;
    border-bottom: 3px solid #ef6c00;
    display: inline-block;
}

/* Reviews Summary */
.gf-reviews-summary {
    background: #fafafa;
    padding: 40px 35px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    margin-bottom: 45px;
}

.gf-rating-overall {
    text-align: center;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ddd;
}

.gf-rating-number {
    margin-bottom: 12px;
}

.gf-rating-number .rating-value {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin-bottom: 8px;
}

.gf-rating-number .rating-stars {
    display: block;
    font-size: 22px;
    color: #ffa726;
}

.gf-rating-overall .rating-text {
    font-size: 15px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Rating Distribution */
.gf-rating-distribution {
    max-width: 100%;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0;
}

.rating-bar-item:last-child {
    margin-bottom: 0;
}

.rating-bar-item .rating-label {
    flex: 0 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.rating-bar {
    flex: 1;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffa726 0%, #ff9800 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.rating-bar-item .rating-count {
    flex: 0 0 90px;
    font-size: 14px;
    color: #666;
    text-align: right;
}

.rating-bar-item .rating-percent {
    color: #999;
    font-size: 13px;
    margin-left: 4px;
}

/* Reviews List */
.gf-reviews-list {
    margin-top: 40px;
}

.gf-reviews-list > h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

/* Individual Review Item */
.gf-review-item {
    padding: 0 0 30px 0;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    margin-bottom: 30px;
    transition: none;
}

.gf-review-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gf-review-item:hover {
    box-shadow: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.review-author-line .author-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4caf50;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
}

.review-meta-line {
    display: flex;
    align-items: center;
}

.review-rating {
    display: inline-flex;
}

.review-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    display: block;
    font-style: normal;
}

/* Service Type Badge */
.review-service-type {
    margin-bottom: 12px;
}

.service-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e0e0e0;
}

/* Review Content */
.review-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 14px;
}

.review-content p {
    margin-bottom: 12px;
    margin-top: 0;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-content p:first-child {
    margin-top: 0;
}

/* Stars Styling */
.gf-stars {
    display: inline-flex;
    gap: 3px;
    color: #ffa726;
    font-size: 16px;
}

.gf-stars .star {
    display: inline-block;
    line-height: 1;
}

.gf-stars .star-full {
    color: #ff9800;
}

.gf-stars .star-half {
    color: #ff9800;
    opacity: 0.6;
}

.gf-stars .star-empty {
    color: #ddd;
}

/* Large stars in summary */
.gf-rating-number .gf-stars {
    font-size: 22px;
    gap: 4px;
}

/* Load More Button */
.gf-reviews-load-more {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    
}

.gf-reviews-load-more .button {
    padding: 14px 40px;
    background: #fff;
    border: 2px solid #222;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gf-reviews-load-more .button:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* ==========================================================================
   Write a Review Form
   ========================================================================== */

.gf-review-form-wrap {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.gf-review-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.gf-review-form .form-row {
    margin-bottom: 25px;
}

.gf-review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.gf-review-form input[type="text"],
.gf-review-form input[type="email"],
.gf-review-form textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.gf-review-form input[type="text"]:focus,
.gf-review-form input[type="email"]:focus,
.gf-review-form textarea:focus {
    outline: none;
    border-color: #ff9800;
}

.gf-review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0;
    padding: 0;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ff9800;
}

.gf-review-form .button-primary {
    padding: 14px 32px;
    background: #ef6c00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.gf-review-form .button-primary:hover {
    background: #e65100;
}

/* Sidebar Widgets
   ========================================================================== */
.location-sidebar {
    padding-left: 15px;
}

.location-widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-widget .widget-title i {
    color: #dc3545;
}

/* Contact Info Widget */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #ef6c00;
    font-size: 16px;
    width: 20px;
    margin-top: 3px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details strong {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ef6c00;
}

/* Opening Hours Widget */
.current-status {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.current-status.status-open {
    background: #e8f5e9;
    color: #2e7d32;
}

.current-status.status-closed {
    background: #ffebee;
    color: #c62828;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.today {
    background: #fff3e0;
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: 4px;
    font-weight: 600;
}

.hours-item .day-name {
    color: #555;
}

.hours-item .day-hours {
    color: #222;
}

.hours-item .closed {
    color: #c62828;
}

/* Contact Form Widget */
.location-contact-form .form-group {
    margin-bottom: 20px;
}

/* Compact form styling (no labels) */
.location-contact-form.compact-form .form-group {
    margin-bottom: 12px;
}

.location-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.location-contact-form .required {
    color: #dc3545;
}

.location-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.location-contact-form .form-control:focus {
    outline: none;
    border-color: #ef6c00;
}

.location-contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-messages {
    margin-bottom: 15px;
}

.form-messages .alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-danger {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Map Widget */
.location-map-container {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-placeholder {
    padding: 40px 20px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Nearby Locations Widget */
.nearby-locations-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.nearby-location-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nearby-location-item:last-child {
    border-bottom: none;
}

.nearby-location-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.nearby-location-title a {
    color: #222;
    text-decoration: none;
}

.nearby-location-title a:hover {
    color: #ef6c00;
}

.nearby-rating {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nearby-rating .rating-value {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.nearby-address,
.nearby-phone {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.nearby-address i,
.nearby-phone i {
    color: #ef6c00;
    font-size: 12px;
}

/* Related Blogs Widget */
.related-blogs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.related-blog-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.related-blog-item:last-child {
    border-bottom: none;
}

.related-blog-content {
    display: flex;
    gap: 12px;
}

.blog-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    flex: 1;
}

.blog-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
}

.blog-title a:hover {
    color: #ef6c00;
}

.blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #ef6c00;
    color: #fff;
}

.btn-primary:hover {
    background: #e65100;
    color: #fff;
}

.btn-secondary {
    background: #757575;
    color: #fff;
}

.btn-secondary:hover {
    background: #616161;
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn i {
    margin-right: 6px;
}

/* Widget Actions */
.widget-action {
    margin-top: 15px;
}

/* ==========================================================================
   Archive Page
   ========================================================================== */

.archive-locations {
    padding: 40px 0;
}

.archive-header,
.gf-region-header {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

/* Left align on taxonomy pages */
.gf-region-header {
    text-align: left;
}

.archive-title,
.gf-region-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* Red color for taxonomy region titles */
.gf-region-title {
    color: #dc3545;
}

.archive-description,
.gf-region-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.archive-count,
.gf-region-count {
    font-size: 14px;
    color: #999;
}

/* Taxonomy Listings Wrapper */
.gf-taxonomy-listings {
    padding-bottom: 30px;
}

/* Location Cards */
.locations-grid {
    margin-bottom: 40px;
}

/* Extra bottom padding for taxonomy pages */
.gf-taxonomy-listings .gf-locations-wrapper {
    padding-bottom: 20px;
}

/* Reduce spacing between header and results info on taxonomy pages */
.gf-taxonomy-listings .gf-locations-results-info {
    margin-top: 0;
    margin-bottom: 20px;
}

.location-card {
    margin-bottom: 30px;
}

.location-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.location-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.location-item:hover .location-thumbnail img {
    transform: scale(1.05);
}

.location-rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-rating-badge .rating-number {
    font-weight: 700;
    font-size: 16px;
}

.location-rating-badge .rating-star {
    color: #ffa726;
}

.location-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-content .location-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.location-content .location-title a {
    color: #222;
    text-decoration: none;
}

.location-content .location-title a:hover {
    color: #ef6c00;
}

.location-content .location-address,
.location-content .location-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.location-content .location-address i,
.location-content .location-phone i {
    color: #ef6c00;
}

.location-content .location-phone a {
    color: #666;
    text-decoration: none;
}

.location-content .location-phone a:hover {
    color: #ef6c00;
}

.location-reviews {
    margin-bottom: 12px;
    display: block;
    align-items: center;
    gap: 8px;
}

.location-reviews .review-count {
    font-size: 13px;
    color: #777;
}

.location-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.location-actions {
    margin-top: auto;
}

/* Pagination */
.archive-pagination {
    margin-top: 40px;
    text-align: center;
}

/* No Results */
.no-locations-found {
    text-align: center;
    padding: 60px 20px;
}

.no-locations-found h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.no-locations-found p {
    font-size: 16px;
    color: #666;
}

/* ==========================================================================
   Star Ratings
   ========================================================================== */

.stars-display {
    display: inline-flex;
    gap: 2px;
    color: #ffa726;
}

.stars-display.stars-small {
    font-size: 12px;
}

.stars-display.stars-medium {
    font-size: 16px;
}

.stars-display.stars-large {
    font-size: 20px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .location-main-column {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .location-sidebar {
        padding-left: 15px;
    }

    .location-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 250px 125px;
    }

    /* Reviews responsive */
    .gf-reviews-summary {
        padding: 30px 25px;
    }

    .gf-rating-overall {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .gf-rating-distribution {
        max-width: 100%;
    }

    .rating-bar-item {
        gap: 10px;
    }

    .rating-bar-item .rating-label {
        flex: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .location-title {
        font-size: 24px;
    }

    .location-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 100px 100px;
    }

    .gallery-item.gallery-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .archive-title {
        font-size: 28px;
    }

    .location-item {
        margin-bottom: 20px;
    }

    /* Reviews mobile */
    .gf-reviews-header h2 {
        font-size: 24px;
    }

    .gf-reviews-summary {
        padding: 25px 20px;
    }

    .gf-rating-number .rating-value {
        font-size: 42px;
    }

    .gf-review-item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 6px;
    }

    .review-author-line {
        width: 100%;
    }

    .review-meta-line {
        width: 100%;
    }

    .rating-bar-item .rating-count {
        flex: 0 0 75px;
        font-size: 13px;
    }

    .rating-bar {
        height: 10px;
    }
}

@media (max-width: 575px) {
    .location-widget {
        padding: 20px;
    }

    .location-section .section-title {
        font-size: 20px;
        display: none;
    }

    /* Reviews extra small screens */
    .gf-reviews-list > h3 {
        font-size: 18px;
    }

    .rating-bar-item {
        gap: 8px;
    }

    .rating-bar-item .rating-label {
        flex: 0 0 40px;
        font-size: 13px;
    }

    .rating-bar-item .rating-count {
        flex: 0 0 60px;
    }

    .rating-bar-item .rating-percent {
        display: none;
    }
}

/* ==========================================================================
   Weather Table
   ========================================================================== */

.gf-weather-table-wrapper {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.gf-weather-table-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gf-weather-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gf-weather-table thead {
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    color: #fff;
}

.gf-weather-table thead th {
    padding: 15px 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gf-weather-table thead th:first-child {
    border-top-left-radius: 6px;
}

.gf-weather-table thead th:last-child {
    border-top-right-radius: 6px;
}

.gf-weather-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.gf-weather-table tbody tr:last-child {
    border-bottom: none;
}

.gf-weather-table tbody tr:hover {
    background: #fafafa;
}

.gf-weather-table tbody td {
    padding: 14px 12px;
    font-size: 14px;
    color: #555;
}

.gf-weather-table tbody td:first-child {
    font-weight: 600;
    color: #333;
}

.gf-weather-table .weather-icon {
    font-size: 22px;
    text-align: center;
    width: 50px;
}

.gf-weather-table tbody td:nth-child(3),
.gf-weather-table tbody td:nth-child(4) {
    font-weight: 600;
    color: #222;
}

.gf-weather-table tbody td:nth-child(5) {
    color: #666;
    font-style: italic;
}

.weather-note {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13px;
    color: #777;
    font-style: italic;
    line-height: 1.6;
}

/* Weather Table - Responsive */
@media (max-width: 991px) {
    .gf-weather-table-wrapper {
        padding: 20px;
    }

    .gf-weather-table thead th,
    .gf-weather-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .gf-weather-table .weather-icon {
        font-size: 20px;
        width: 45px;
    }
}

@media (max-width: 767px) {
    .gf-weather-table-wrapper {
        padding: 18px;
        margin: 25px 0;
    }

    .gf-weather-table-wrapper h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .gf-weather-table {
        font-size: 12px;
    }

    .gf-weather-table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }

    .gf-weather-table tbody td {
        padding: 10px 8px;
    }

    .gf-weather-table .weather-icon {
        font-size: 18px;
        width: 40px;
    }

    /* Stack weather data for extra small screens */
    .gf-weather-table tbody td:nth-child(5) {
        display: none;
    }
}

@media (max-width: 575px) {
    .gf-weather-table-wrapper {
        padding: 15px;
        margin: 20px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    /* Simplify table for very small screens */
    .gf-weather-table thead th:nth-child(5),
    .gf-weather-table tbody td:nth-child(5) {
        display: none;
    }

    .weather-note {
        font-size: 12px;
    }
}

/* ==========================================================================
   All States Landing Page - Enhanced with Images
   ========================================================================== */

/* Page Header */
.gf-states-page-header {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.gf-states-page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #dc3545;
}

.gf-states-page-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gf-states-page-intro p {
    margin-bottom: 10px;
}

/* States Grid Container */
.gf-states-only-wrapper {
    margin-bottom: 60px;
}

.gf-states-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

/* Column variations */
.gf-states-grid.gf-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gf-states-grid.gf-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gf-states-grid.gf-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gf-states-grid.gf-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gf-states-grid.gf-columns-6 { grid-template-columns: repeat(6, 1fr); }

/* State Card */
.gf-state-card {
    display: block;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.gf-state-card:hover {
    border-color: #dc3545;
    box-shadow: 0 12px 28px rgba(220, 53, 69, 0.25);
    transform: translateY(-4px);
    background: #fff !important;
}

/* Image Wrapper */
.gf-state-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 aspect ratio */
    overflow: hidden;
}

/* State Image */
.gf-state-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gf-state-card:hover .gf-state-card-image {
    transform: scale(1.08);
}

/* No Image Fallback */
.gf-state-card-no-image {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-state-card-no-image i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Image Overlay */
.gf-state-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Location Badge */
.gf-state-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    min-width: 44px;
    height: 44px;
    background: #dc3545;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
    border: 3px solid #fff;
}

/* State Name on Image */
.gf-state-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.gf-state-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gf-state-card:hover .gf-state-name {
    transform: translateX(4px);
}

/* Card Content */
.gf-state-card-content {
    padding: 20px;
    background: #fff;
}

/* Location Count */
.gf-state-count {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gf-state-count i {
    color: #dc3545;
    font-size: 14px;
}

.gf-state-count .count-number {
    font-weight: 600;
    color: #222;
}

/* View Locations Link */
.gf-view-locations {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
    transition: gap 0.3s ease;
}

.gf-state-card:hover .gf-view-locations {
    gap: 12px;
}

.gf-view-locations i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gf-state-card:hover .gf-view-locations i {
    transform: translateX(4px);
}

/* Hide old elements */
.gf-state-arrow,
.gf-state-card-inner {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gf-states-grid.gf-columns-6,
    .gf-states-grid.gf-columns-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gf-states-grid.gf-columns-4,
    .gf-states-grid.gf-columns-5,
    .gf-states-grid.gf-columns-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .gf-states-page-title {
        font-size: 30px;
    }

    .gf-state-name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .gf-states-grid.gf-columns-2,
    .gf-states-grid.gf-columns-3,
    .gf-states-grid.gf-columns-4,
    .gf-states-grid.gf-columns-5,
    .gf-states-grid.gf-columns-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gf-state-card-content {
        padding: 16px;
    }

    .gf-state-name {
        font-size: 20px;
    }

    .gf-states-page-title {
        font-size: 28px;
    }

    .gf-state-badge {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .gf-states-grid.gf-columns-2,
    .gf-states-grid.gf-columns-3,
    .gf-states-grid.gf-columns-4,
    .gf-states-grid.gf-columns-5,
    .gf-states-grid.gf-columns-6 {
        grid-template-columns: 1fr;
    }

    .gf-state-card-image-wrapper {
        padding-top: 56.25%; /* 16:9 on mobile */
    }

    .gf-states-page-header {
        margin-bottom: 30px;
    }

    .gf-states-page-title {
        font-size: 24px;
    }
}

/* ============================================
   Footer Locations Widget & Menu Integration
   ============================================ */

/* Footer Locations Widget */
.gf-footer-locations-widget {
    padding: 20px 0;
}

.gf-footer-locations {
    margin: 0 0 20px 0;
}

.gf-states-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px 20px;
}

.gf-states-list.gf-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gf-states-list.gf-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gf-states-list.gf-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gf-states-list.gf-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gf-states-list.gf-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gf-states-list li {
    margin: 0;
    padding: 0;
}

.gf-states-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 5px 0;
}

.gf-states-list a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.gf-states-list .location-count {
    font-size: 0.9em;
    opacity: 0.7;
}

.gf-view-all-locations {
    margin-top: 20px;
    text-align: center;
}

.gf-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.gf-view-all-link:hover {
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
}

/* Menu Integration - Mega Menu States */
.megamenu-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    padding: 20px;
    min-width: 600px;
}

.menu-item-state a {
    display: block;
    padding: 8px 12px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 4px;
}

.menu-item-state a:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.menu-location-count {
    font-size: 0.85em;
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .gf-states-list.gf-columns-6,
    .gf-states-list.gf-columns-5,
    .gf-states-list.gf-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gf-states-list.gf-columns-6,
    .gf-states-list.gf-columns-5,
    .gf-states-list.gf-columns-4,
    .gf-states-list.gf-columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .megamenu-sub {
        grid-template-columns: repeat(2, 1fr);
        min-width: 400px;
    }
}

@media (max-width: 480px) {
    .gf-states-list {
        grid-template-columns: 1fr;
    }

    .megamenu-sub {
        grid-template-columns: 1fr;
        min-width: 280px;
    }
}

/* ============================================
   GFL Widget Unique Styles (Override-Proof)
   ============================================ */

/* GFL Contact Info Widget - Unique Classes */
.gfl-widget-wrapper.widget-contact-info .gfl-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-contact-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-contact-row:last-child {
    border-bottom: none !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-icon {
    color: #ef6c00 !important;
    font-size: 16px !important;
    width: 20px !important;
    margin-top: 3px !important;
    flex-shrink: 0 !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-info-text {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-label {
    font-size: 13px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-value,
.gfl-widget-wrapper.widget-contact-info .gfl-link {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.gfl-widget-wrapper.widget-contact-info .gfl-link:hover {
    color: #ef6c00 !important;
}

/* GFL Opening Hours Widget - Unique Classes */
.gfl-widget-wrapper.widget-opening-hours .gfl-status-badge {
    padding: 15px !important;
    border-radius: 6px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-status-badge.status-open {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-status-badge.status-closed {
    background: #ffebee !important;
    color: #c62828 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-hours-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-hours-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-hours-row:last-child {
    border-bottom: none !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-hours-row.gfl-today {
    background: #fff3e0 !important;
    padding: 10px 12px !important;
    margin: 0 -12px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-day-name {
    color: #555 !important;
    font-size: 15px !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-day-time {
    color: #222 !important;
    font-size: 15px !important;
}

.gfl-widget-wrapper.widget-opening-hours .gfl-closed {
    color: #c62828 !important;
}

/* GFL Call Now Button */
.gfl-widget-wrapper .gfl-call-btn {
    display: block !important;
    width: 100% !important;
    padding: 12px 24px !important;
    background: #ef6c00 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.gfl-widget-wrapper .gfl-call-btn:hover {
    background: #e65100 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.gfl-widget-wrapper .gfl-call-btn i {
    margin-right: 6px !important;
}

/* ============================================
   Dynamically Injected States Submenu - Complete Override
   ============================================ */

/* Mega menu wrapper styling - Highest specificity */
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-wrap-inner,
ul.gva-nav-menu > li.gf-has-states-menu.megamenu-main .megamenu-wrap-inner {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    padding: 30px !important;
    min-width: 600px !important;
}

/* States mega menu grid - Complete reset and override */
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub,
ul.gva-nav-menu > li.gf-has-states-menu.megamenu-main .megamenu-sub,
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu ul.megamenu-sub,
ul.gva-nav-menu > li.gf-has-states-menu.megamenu-main ul.megamenu-sub {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 900px !important;
    width: 100% !important;
}

/* Ensure Service Areas item shows dropdown on hover */
.gva-main-menu .menu-item-has-children:hover > .submenu-inner,
.gva-main-menu .menu-item-has-children:hover > .sub-menu,
.gva-main-menu .megamenu-main:hover > .megamenu-wrap-inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

/* Make sure submenu is hidden by default */
.gva-main-menu .submenu-inner {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.gva-main-menu .menu-item-has-children:hover > .submenu-inner {
    display: block;
}

/* State menu items in dropdown - Complete reset and override of Lestin theme */
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state,
ul.gva-nav-menu > li.gf-has-states-menu.megamenu-main .megamenu-sub > li.menu-item-state,
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu ul.megamenu-sub > li.menu-item-state,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: transparent !important;
    text-align: left !important;
    position: relative !important;
}

ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state:nth-child(4n),
ul.gva-nav-menu > li .submenu-inner li.menu-item-state:nth-child(4n) {
    border-bottom: 2px solid #e0e0e0 !important;
}

ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state:last-child,
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state:nth-last-child(-n+4),
ul.gva-nav-menu > li .submenu-inner li.menu-item-state:last-child {
    border-bottom: none !important;
}

/* State menu links - Complete override with highest specificity */
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state a,
ul.gva-nav-menu > li.gf-has-states-menu.megamenu-main .megamenu-sub > li.menu-item-state a,
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu ul.megamenu-sub > li.menu-item-state a,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state a {
    display: block !important;
    padding: 12px 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    position: relative !important;
}

ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state a:hover,
ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state a:focus,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state a:hover,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state a:focus {
    background-color: #f8f9fa !important;
    color: #e74c3c !important;
    transform: translateX(4px) !important;
}

ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state .menu-title,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state .menu-title {
    display: inline-block !important;
}

ul.gva-nav-menu > li.megamenu-main.gf-has-states-menu .megamenu-sub > li.menu-item-state .menu-location-count,
ul.gva-nav-menu > li .submenu-inner li.menu-item-state .menu-location-count {
    font-size: 0.85em !important;
    color: #6c757d !important;
    margin-left: 6px !important;
    font-weight: 400 !important;
}

/* ============================================
   Guarantee Message - Ultra-Specific Global Styles
   Works on ALL pages (home, service areas, etc.)
   ============================================ */

/* Guarantee wrapper - Maximum specificity with multiple selectors */
.gf-menu-guarantee,
.gf-guarantee-wrapper,
body .gf-menu-guarantee,
body .gf-guarantee-wrapper,
.gva-nav-menu .gf-menu-guarantee,
.megamenu-wrap-inner .gf-menu-guarantee,
ul.gva-nav-menu > li .megamenu-wrap-inner .gf-menu-guarantee,
ul.gva-nav-menu > li.megamenu-main .megamenu-wrap-inner .gf-menu-guarantee {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 2px solid #e74c3c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

/* Guarantee icon - Red circle with shield */
.gf-guarantee-icon,
body .gf-guarantee-icon,
.gva-nav-menu .gf-guarantee-icon,
.megamenu-wrap-inner .gf-guarantee-icon,
.gf-menu-guarantee .gf-guarantee-icon,
ul.gva-nav-menu > li .megamenu-wrap-inner .gf-guarantee-icon,
ul.gva-nav-menu > li.megamenu-main .megamenu-wrap-inner .gf-guarantee-icon {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    background-color: #e74c3c !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3) !important;
}

/* Shield icon inside circle */
.gf-guarantee-icon i,
body .gf-guarantee-icon i,
.gva-nav-menu .gf-guarantee-icon i,
.megamenu-wrap-inner .gf-guarantee-icon i,
.gf-menu-guarantee .gf-guarantee-icon i,
ul.gva-nav-menu > li .megamenu-wrap-inner .gf-guarantee-icon i {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Guarantee text wrapper */
.gf-guarantee-text,
body .gf-guarantee-text,
.gva-nav-menu .gf-guarantee-text,
.megamenu-wrap-inner .gf-guarantee-text,
.gf-menu-guarantee .gf-guarantee-text,
ul.gva-nav-menu > li .megamenu-wrap-inner .gf-guarantee-text,
ul.gva-nav-menu > li.megamenu-main .megamenu-wrap-inner .gf-guarantee-text {
    font-size: 15px !important;
    color: #333 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* "100% Satisfaction" strong text - RED */
.gf-guarantee-text strong,
body .gf-guarantee-text strong,
.gva-nav-menu .gf-guarantee-text strong,
.megamenu-wrap-inner .gf-guarantee-text strong,
.gf-menu-guarantee .gf-guarantee-text strong,
ul.gva-nav-menu > li .megamenu-wrap-inner .gf-guarantee-text strong,
ul.gva-nav-menu > li.megamenu-main .megamenu-wrap-inner .gf-guarantee-text strong {
    color: #e74c3c !important;
    font-weight: 600 !important;
    display: inline !important;
    font-size: 16px !important;
    margin-right: 4px !important;
    font-family: inherit !important;
}

/* Caret icon for parent menu item */
.menu-item-has-children > a .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Loading state animation (optional) */
.gva-main-menu .menu-item.states-loading > a:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile menu styles */
@media (max-width: 991px) {
    .gva-main-menu .submenu-inner {
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        padding-left: 20px;
        min-width: auto;
    }

    .gva-main-menu .menu-item-has-children > .submenu-inner {
        display: none;
    }

    .gva-main-menu .menu-item-has-children.open > .submenu-inner {
        display: block;
    }
}
