/* Groothandels Directory Frontend Styles */

/* General Styles */
.ghd-directory-wrapper {
    margin: 20px 0;
}

.ghd-clear {
    clear: both;
}

.ghd-hidden {
    display: none !important;
}

/* Messages */
.ghd-message {
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 4px;
    border: 1px solid transparent;
}

.ghd-message.ghd-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.ghd-message.ghd-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.ghd-message.ghd-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* Search Form */
.ghd-search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.ghd-search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: end;
}

.ghd-search-field {
    flex: 1;
    min-width: 200px;
}

.ghd-search-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.ghd-search-field input[type="text"],
.ghd-search-field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.ghd-search-field input[type="text"]:focus,
.ghd-search-field select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.ghd-search-submit {
    flex: 0 0 auto;
}

.ghd-search-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.ghd-search-button:hover {
    background: #005a87;
}

/* Directory Listings Grid */
.ghd-directory-listings {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.ghd-directory-listings.ghd-layout-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.ghd-directory-listings.ghd-layout-list {
    grid-template-columns: 1fr;
}

/* Listing Cards */
.ghd-listing-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.ghd-listing-card:hover,
.ghd-listing-card.ghd-card-hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ghd-card-header {
    position: relative;
    overflow: hidden;
}

.ghd-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.ghd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ghd-listing-card:hover .ghd-card-image img {
    transform: scale(1.05);
}

.ghd-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.ghd-card-content {
    padding: 20px;
}

.ghd-card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ghd-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.ghd-card-title a:hover {
    color: #007cba;
}

.ghd-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ghd-card-meta {
    margin-bottom: 15px;
}

.ghd-card-address,
.ghd-card-phone,
.ghd-card-email {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.ghd-card-phone a,
.ghd-card-email a {
    color: #007cba;
    text-decoration: none;
}

.ghd-card-phone a:hover,
.ghd-card-email a:hover {
    text-decoration: underline;
}

.ghd-verified-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.ghd-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e1e5e9;
}

.ghd-view-listing {
    background: #007cba;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.ghd-view-listing:hover {
    background: #005a87;
    color: white;
}

.ghd-claim-link {
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.ghd-claim-link:hover {
    text-decoration: underline;
}

/* Listing Details Page */
.ghd-listing-details {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}

.ghd-listing-logo {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 150px;
}

.ghd-listing-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ghd-company-name {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.ghd-contact-info {
    margin-bottom: 20px;
}

.ghd-contact-info > div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ghd-contact-info .label {
    font-weight: 600;
    width: 80px;
    color: #666;
}

.ghd-contact-info a {
    color: #007cba;
    text-decoration: none;
}

.ghd-contact-info a:hover {
    text-decoration: underline;
}

.ghd-social-media {
    margin-top: 20px;
}

.ghd-social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.ghd-social-link {
    background: #6c757d;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.2s;
}

.ghd-social-link:hover {
    background: #5a6268;
    color: white;
}

.ghd-social-facebook { background: #3b5998; }
.ghd-social-twitter { background: #1da1f2; }
.ghd-social-linkedin { background: #0077b5; }
.ghd-social-instagram { background: #e4405f; }

/* Claim Section */
.ghd-claim-section {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.ghd-claim-section h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #333;
}

.ghd-claim-section p {
    color: #666;
    margin-bottom: 20px;
}

.ghd-claim-button {
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.ghd-claim-button:hover {
    background: #1e7e34;
    color: white;
}

.ghd-claimed-notice {
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

/* Owner Section */
.ghd-owner-section {
    background: #e8f4fd;
    border: 2px solid #007cba;
}

.ghd-owner-section h3 {
    color: #007cba;
    margin-top: 0;
}

.ghd-owner-section p {
    color: #333;
}

.ghd-edit-listing-button {
    background: #007cba !important;
    color: white !important;
    margin-right: 10px;
}

.ghd-edit-listing-button:hover {
    background: #005a87 !important;
}

.ghd-claimed-badge {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Subscription Packages */
.ghd-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.ghd-package {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    min-width: 0; /* Allow packages to shrink in grid */
    display: flex;
    flex-direction: column;
}

.ghd-package:hover {
    border-color: #007cba;
    transform: translateY(-2px);
}

.ghd-package-basic {
    border-color: #6c757d;
}

.ghd-package-premium {
    border-color: #007cba;
    transform: scale(1.05);
}

/* Only show "Most Popular" in package comparison contexts, not on dashboard badges */
.ghd-packages-grid .ghd-package-premium::before,
.ghd-upgrade-options .ghd-package-premium::before {
    content: "Most Popular";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #007cba;
    color: white;
    padding: 4px 12px;
    border-radius: 0 0 4px 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ghd-package-enterprise {
    border-color: #ff6b35;
}

.ghd-package-header {
    background: #f8f9fa;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
}

.ghd-package-header h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.ghd-package-price {
    font-size: 32px;
    font-weight: 700;
    color: #007cba;
    line-height: 1;
}

.ghd-package-price .currency {
    font-size: 20px;
}

.ghd-package-price .period {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.ghd-package-features {
    padding: 20px;
    flex-grow: 1; /* Take up remaining space to push footer to bottom */
}

.ghd-package-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ghd-package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding-left: 25px;
}

.ghd-package-features li:last-child {
    border-bottom: none;
}

.ghd-package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 600;
}

.ghd-package-footer {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
}

.ghd-select-package {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.ghd-select-package:hover:not(:disabled) {
    background: #005a87;
}

.ghd-select-package:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Package Badges */
.ghd-package-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.ghd-package-badge.ghd-package-basic {
    background: #6c757d;
}

.ghd-package-badge.ghd-package-premium {
    background: #007cba;
}

.ghd-package-badge.ghd-package-enterprise {
    background: #ff6b35;
}

/* Billing Toggle Styles */
.ghd-packages-wrapper {
    margin: 20px 0;
}

.ghd-billing-toggle {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.ghd-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #333;
}

.ghd-toggle-label {
    font-size: 16px;
    transition: color 0.2s;
}

.ghd-yearly-label {
    position: relative;
}

.ghd-savings-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    white-space: nowrap;
}

/* Toggle Switch */
.ghd-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.ghd-billing-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ghd-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 30px;
}

.ghd-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.ghd-billing-toggle-input:checked + .ghd-toggle-slider {
    background-color: #007cba;
}

.ghd-billing-toggle-input:checked + .ghd-toggle-slider:before {
    transform: translateX(30px);
}

/* Enhanced Package Pricing */
.ghd-package-price {
    margin-bottom: 10px;
}

.ghd-price-yearly .ghd-yearly-price {
    font-size: 28px;
    font-weight: 700;
    color: #007cba;
    line-height: 1;
    margin-bottom: 5px;
}

.ghd-price-yearly .ghd-monthly-equivalent {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.ghd-price-yearly .ghd-savings-info {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Enhanced Button Styling */
.ghd-select-yearly {
    background: #28a745;
}

.ghd-select-yearly:hover:not(:disabled) {
    background: #1e7e34;
}

/* Active state indicators */
.ghd-billing-toggle-input:not(:checked) ~ .ghd-toggle-container .ghd-toggle-label:first-child {
    color: #007cba;
    font-weight: 700;
}

.ghd-billing-toggle-input:checked ~ .ghd-toggle-container .ghd-yearly-label {
    color: #007cba;
    font-weight: 700;
}

/* Responsive Design for Packages */
@media (max-width: 1024px) {
    .ghd-packages-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ghd-toggle-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ghd-toggle-switch {
        order: 1;
    }
    
    .ghd-savings-badge {
        display: block;
        margin: 5px 0 0 0;
    }
    
    .ghd-packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ghd-package-header h3 {
        font-size: 18px;
    }
    
    .ghd-package-price {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 950px) {
    /* Tablet landscape - 2 columns for better fit */
    .ghd-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Center the third package when in 2-column layout */
    .ghd-package:nth-child(3) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 951px) {
    /* Desktop - always 3 columns side by side */
    .ghd-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Single Listing Template Styles */
.ghd-single-listing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ghd-breadcrumbs {
    margin-bottom: 20px;
}

.ghd-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ghd-breadcrumbs li {
    margin-right: 5px;
}

.ghd-breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 5px;
    color: #666;
}

.ghd-breadcrumbs a {
    color: #007cba;
    text-decoration: none;
}

.ghd-breadcrumbs a:hover {
    text-decoration: underline;
}

.ghd-listing-header {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.ghd-listing-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.ghd-listing-basic-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.ghd-listing-logo {
    flex-shrink: 0;
}

.ghd-listing-logo img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 8px;
}

.ghd-listing-titles h1 {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: #fff;
}

.ghd-listing-titles h2 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.ghd-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.ghd-listing-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.ghd-claimed-badge {
    background: #28a745;
    color: white !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ghd-listing-actions {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ghd-listing-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ghd-listing-content section {
    margin-bottom: 30px;
}

.ghd-listing-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e1e5e9;
    padding-bottom: 5px;
}

.ghd-listing-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.ghd-listing-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ghd-opening-hours .ghd-hours-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.ghd-hours-day {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

.ghd-hours-day:last-child {
    border-bottom: none;
}

.ghd-hours-day .day {
    font-weight: 600;
    color: #333;
}

.ghd-hours-day .times {
    color: #666;
}

.ghd-listing-sidebar {
    align-self: start;
}

.ghd-contact-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.ghd-contact-card h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
}

.ghd-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.ghd-contact-item:last-child {
    margin-bottom: 0;
}

.ghd-contact-item i {
    color: #007cba;
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ghd-contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 2px;
    font-size: 14px;
}

.ghd-contact-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.ghd-contact-item a {
    color: #007cba;
    text-decoration: none;
}

.ghd-contact-item a:hover {
    text-decoration: underline;
}

.ghd-social-media h4 {
    margin: 20px 0 10px 0;
    font-size: 16px;
    color: #333;
}

.ghd-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ghd-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.ghd-social-link:hover {
    background: #007cba;
    color: white;
}

.ghd-map-placeholder {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
}

.ghd-map-placeholder h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.ghd-map-container {
    border-radius: 8px;
    overflow: hidden;
}

.ghd-claim-section {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.ghd-claim-section h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.ghd-claim-section p {
    margin: 0 0 25px 0;
    font-size: 16px;
    opacity: 0.9;
}

.ghd-claim-btn-large {
    background: white;
    color: #007cba;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.ghd-claim-btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.ghd-claim-btn-primary {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.ghd-claim-btn-primary:hover {
    background: #1e7e34;
    color: white;
    text-decoration: none;
}

.ghd-share-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.ghd-share-btn:hover {
    background: #e9ecef;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghd-listing-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ghd-listing-basic-info {
        flex-direction: column;
        text-align: center;
    }
    
    .ghd-listing-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ghd-listing-actions {
        justify-content: center;
        margin-top: 20px;
    }
    
    .ghd-single-listing-wrapper {
        padding: 15px;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Archive Template Styles */
.ghd-archive-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.ghd-archive-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.ghd-archive-title {
    font-size: 36px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.ghd-header-meta {
    color: #666;
    font-size: 16px;
}

.ghd-results-count {
    font-weight: 600;
}

/* Search and Filters */
.ghd-search-filters-section {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ghd-search-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.ghd-keyword-field {
    position: relative;
}

.ghd-search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.ghd-search-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.ghd-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ghd-search-btn:hover {
    background: #005a87;
}

.ghd-select-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ghd-select-field:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Active Filters */
.ghd-active-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ghd-filters-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.ghd-filter-tag {
    display: inline-flex;
    align-items: center;
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    gap: 8px;
}

.ghd-remove-filter {
    color: #1976d2;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.ghd-remove-filter:hover {
    color: #0d47a1;
}

.ghd-clear-all-filters {
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid #dc3545;
    border-radius: 20px;
    transition: all 0.2s;
}

.ghd-clear-all-filters:hover {
    background: #dc3545;
    color: white;
}

/* Results Header */
.ghd-results-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.ghd-results-info {
    color: #666;
    font-size: 14px;
}

/* Listings Container */
.ghd-listings-container {
    margin-bottom: 40px;
}

.ghd-compact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Compact Listing Cards */
.ghd-compact-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    align-items: stretch;
    min-height: 100px;
}

.ghd-compact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #007cba;
}

.ghd-compact-card.ghd-claimed {
    border-left: 4px solid #28a745;
}

/* Main content area (left side) */
.ghd-card-main-content {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 15px 20px;
    gap: 15px;
    min-width: 0;
}

.ghd-card-logo {
    flex-shrink: 0;
}

.ghd-card-logo img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.ghd-card-info {
    flex: 1;
    min-width: 0;
}

.ghd-card-header-info {
    margin-bottom: 8px;
}

.ghd-card-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.ghd-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.ghd-card-title a:hover {
    color: #007cba;
}

.ghd-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 6px;
}

.ghd-card-meta span {
    font-size: 12px;
    color: #666;
}

.ghd-card-meta a {
    color: #007cba;
    text-decoration: none;
}

.ghd-card-meta a:hover {
    text-decoration: underline;
}

.ghd-verified-badge {
    background: #28a745;
    color: white !important;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.ghd-card-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 6px;
}

.ghd-contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
}

.ghd-contact-item i {
    color: #007cba;
    width: 12px;
    flex-shrink: 0;
}

.ghd-contact-item a {
    color: #007cba;
    text-decoration: none;
}

.ghd-contact-item a:hover {
    text-decoration: underline;
}

.ghd-card-excerpt {
    margin-top: 4px;
}

.ghd-card-excerpt p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* Actions area (right side) */
.ghd-card-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 1px solid #e1e5e9;
    min-width: 140px;
}

.ghd-view-details-btn {
    background: #007cba;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.ghd-view-details-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.ghd-claim-btn {
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.ghd-claim-btn:hover {
    background: #1e7e34;
    color: white;
    text-decoration: none;
}

/* Pagination */
.ghd-pagination {
    text-align: center;
    margin: 40px 0;
}

.ghd-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 2px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    color: #007cba;
    text-decoration: none;
    transition: all 0.2s;
}

.ghd-pagination .page-numbers:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.ghd-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.ghd-pagination .page-numbers.dots {
    border: none;
    color: #666;
    cursor: default;
}

.ghd-pagination .page-numbers.dots:hover {
    background: none;
    color: #666;
}

/* No Results */
.ghd-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 40px;
}

.ghd-no-results h2 {
    color: #333;
    margin-bottom: 15px;
}

.ghd-no-results p {
    color: #666;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ghd-reset-search-btn {
    background: #007cba;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.2s;
}

.ghd-reset-search-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

/* Call to Action */
.ghd-cta-section {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
}

.ghd-cta-section h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
}

.ghd-cta-section p {
    margin: 0 0 30px 0;
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ghd-cta-btn {
    background: white;
    color: #007cba;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.ghd-cta-btn:hover {
    background: #f8f9fa;
    color: #007cba;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Archive */
@media (max-width: 768px) {
    .ghd-archive-wrapper {
        padding: 15px;
    }
    
    .ghd-archive-title {
        font-size: 28px;
    }
    
    .ghd-search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ghd-compact-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    
    .ghd-card-main-content {
        padding: 15px;
    }
    
    .ghd-card-actions {
        flex-direction: row;
        justify-content: center;
        border-left: none;
        border-top: 1px solid #e1e5e9;
        background: white;
        min-width: auto;
    }
    
    .ghd-cta-section {
        padding: 30px 20px;
    }
    
    .ghd-cta-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ghd-active-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ghd-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .ghd-card-contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .ghd-card-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .ghd-card-main-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .ghd-card-logo {
        align-self: center;
        margin-bottom: 10px;
    }
}

/* Status Badges */
.ghd-status-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.ghd-status-badge.ghd-status-active {
    background: #28a745;
}

.ghd-status-badge.ghd-status-expired,
.ghd-status-badge.ghd-status-cancelled {
    background: #dc3545;
}

.ghd-status-badge.ghd-status-on-hold {
    background: #ffc107;
    color: #333;
}

/* Pagination */
.ghd-pagination {
    text-align: center;
    margin: 30px 0;
}

.ghd-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #e1e5e9;
    color: #007cba;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.ghd-pagination .page-numbers:hover,
.ghd-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

/* Form Styles */
.ghd-field-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 1px #dc3545 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghd-search-fields {
        flex-direction: column;
    }
    
    .ghd-search-field {
        min-width: auto;
    }
    
    .ghd-directory-listings {
        grid-template-columns: 1fr;
    }
    
    .ghd-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .ghd-package-premium {
        transform: none;
    }
    
    .ghd-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .ghd-view-listing {
        text-align: center;
    }
    
    .ghd-listing-logo {
        float: none;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    
    .ghd-contact-info > div {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ghd-contact-info .label {
        width: auto;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .ghd-listing-details,
    .ghd-claim-section {
        padding: 20px;
    }
    
    .ghd-company-name {
        font-size: 24px;
    }
    
    .ghd-package-price {
        font-size: 28px;
    }
}

/* Loading States */
.ghd-loading {
    opacity: 0.6;
    pointer-events: none;
}

.ghd-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: ghd-spin 1s linear infinite;
}

@keyframes ghd-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accessibility */
.ghd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hide only entry meta on directory listings (minimal approach) */
.single-ghd_listing .entry-meta,
.single-ghd_listing .ast-single-post-meta {
    display: none !important;
}

/* Astra Theme Integration */
/* Use Astra's native classes and styling patterns */

/* Directory listings use Astra's post layout */
.ghd-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ghd-listing-card {
    background: var(--ast-global-color-5, #ffffff);
    border: 1px solid var(--ast-border-color, #e5e5e5);
    border-radius: var(--ast-button-border-radius, 4px);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ghd-listing-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Use Astra's button styling */
.ghd-claim-button,
.ghd-select-package,
.ghd-view-listing,
.ghd-search-button,
.ghd-dashboard-button {
    display: inline-block;
    padding: var(--ast-button-v-padding, 12px) var(--ast-button-h-padding, 24px);
    background: var(--ast-global-color-0, #0174a2);
    color: var(--ast-global-color-5, #ffffff) !important;
    text-decoration: none;
    border: none;
    border-radius: var(--ast-button-border-radius, 4px);
    font-family: inherit;
    font-size: var(--ast-button-font-size, 16px);
    font-weight: var(--ast-button-font-weight, 600);
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.ghd-claim-button:hover,
.ghd-select-package:hover,
.ghd-view-listing:hover,
.ghd-search-button:hover,
.ghd-dashboard-button:hover {
    background: var(--ast-global-color-1, #025b7a);
    transform: translateY(-1px);
}

/* Secondary buttons */
.ghd-view-listing {
    background: var(--ast-global-color-4, #6c757d);
}

.ghd-view-listing:hover {
    background: var(--ast-global-color-3, #495057);
}

/* Use Astra's form styling */
.ghd-search-form,
.ghd-dashboard-form {
    background: var(--ast-global-color-5, #ffffff);
    border: 1px solid var(--ast-border-color, #e5e5e5);
    border-radius: var(--ast-button-border-radius, 4px);
    padding: 2rem;
    margin: 2rem 0;
}

.ghd-search-field input,
.ghd-search-field select,
.ghd-dashboard-form input,
.ghd-dashboard-form select,
.ghd-dashboard-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ast-border-color, #e5e5e5);
    border-radius: var(--ast-button-border-radius, 4px);
    font-family: inherit;
    font-size: 16px;
    background: var(--ast-global-color-5, #ffffff);
    color: var(--ast-global-color-0, #333333);
}

.ghd-search-field input:focus,
.ghd-search-field select:focus,
.ghd-dashboard-form input:focus,
.ghd-dashboard-form select:focus,
.ghd-dashboard-form textarea:focus {
    outline: none;
    border-color: var(--ast-global-color-0, #0174a2);
    box-shadow: 0 0 0 2px rgba(1, 116, 162, 0.2);
}

/* Use Astra's typography */
.ghd-listing-title {
    font-family: var(--ast-font-family-h1, inherit);
    font-size: var(--ast-font-size-h3, 1.5rem);
    font-weight: var(--ast-font-weight-h3, 600);
    line-height: var(--ast-line-height-h3, 1.3);
    color: var(--ast-global-color-0, #333333);
    margin: 0 0 1rem 0;
}

.ghd-listing-excerpt,
.ghd-listing-meta {
    font-family: var(--ast-font-family-body, inherit);
    font-size: var(--ast-font-size-body, 16px);
    line-height: var(--ast-line-height-body, 1.6);
    color: var(--ast-global-color-3, #666666);
}

/* Use Astra's spacing and layout */
.ghd-claim-section {
    background: var(--ast-global-color-5, #ffffff);
    border: 1px solid var(--ast-border-color, #e5e5e5);
    border-radius: var(--ast-button-border-radius, 4px);
    padding: 2rem;
    margin: 2rem 0;
}

/* Owner section with Astra's accent color */
.ghd-owner-section {
    background: rgba(var(--ast-global-color-0-rgb, 1, 116, 162), 0.05);
    border-color: var(--ast-global-color-0, #0174a2);
}

.ghd-owner-section h3 {
    color: var(--ast-global-color-0, #0174a2);
    font-family: var(--ast-font-family-h1, inherit);
    font-size: var(--ast-font-size-h4, 1.25rem);
    margin-top: 0;
}

/* Dashboard styling with Astra's patterns */
.ghd-dashboard-container {
    max-width: var(--ast-container-default-xlg, 1200px);
    margin: 0 auto;
    padding: 2rem;
}

.ghd-dashboard-header {
    background: var(--ast-global-color-5, #ffffff);
    border: 1px solid var(--ast-border-color, #e5e5e5);
    border-radius: var(--ast-button-border-radius, 4px);
    padding: 2rem;
    margin-bottom: 2rem;
}

.ghd-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Messages using Astra's color scheme */
.ghd-message {
    padding: 1rem 1.5rem;
    border-radius: var(--ast-button-border-radius, 4px);
    margin: 1rem 0;
    font-family: var(--ast-font-family-body, inherit);
}

.ghd-message.ghd-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #155724;
}

.ghd-message.ghd-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #721c24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ghd-listing-grid,
    .ghd-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ghd-claim-section,
    .ghd-search-form,
    .ghd-dashboard-form {
        padding: 1rem;
    }
    
    .ghd-dashboard-container {
        padding: 1rem;
    }
}

/* Focus States with Astra colors */
.ghd-claim-button:focus,
.ghd-select-package:focus,
.ghd-view-listing:focus,
.ghd-search-button:focus,
.ghd-dashboard-button:focus {
    outline: 2px solid var(--ast-global-color-0, #0174a2);
    outline-offset: 2px;
}

/* ===== NEW PREMIUM FEATURES STYLES ===== */

/* USPs Section */
.ghd-usps-section .ghd-usps-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.ghd-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--ghd-primary, #0174a2);
}

.ghd-usp-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--ghd-primary, #0174a2);
}

.ghd-usp-text {
    font-weight: 500;
    color: #333;
}

/* Product Categories Section */
.ghd-categories-section .ghd-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ghd-category-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ghd-category-tag:hover {
    background: var(--ghd-primary, #0174a2);
    color: white;
    transform: translateY(-1px);
}

.ghd-category-tag a {
    color: inherit;
    text-decoration: none;
}

/* Media Section */
.ghd-media-section .ghd-media-content {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.ghd-photos img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ghd-video {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Offer/CTA Section */
.ghd-offer-section {
    background: linear-gradient(135deg, var(--ghd-primary, #0174a2) 0%, var(--ghd-primary-dark, #015a85) 100%);
    color: white;
    border-radius: 12px;
    overflow: hidden;
}

.ghd-offer-section .ghd-section-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 0;
}

.ghd-offer-section .ghd-section-title {
    color: white;
    margin: 0;
}

.ghd-offer-content {
    padding: 30px 20px;
}

.ghd-cta-block {
    text-align: center;
}

.ghd-cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.ghd-cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ghd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.ghd-cta-btn.ghd-btn-primary {
    background: white;
    color: var(--ghd-primary, #0174a2);
    border-color: white;
}

.ghd-cta-btn.ghd-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.ghd-cta-btn.ghd-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.ghd-cta-btn.ghd-btn-secondary:hover {
    background: white;
    color: var(--ghd-primary, #0174a2);
}

/* Brands Section */
.ghd-brands-section .ghd-brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.ghd-brand-tag {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ghd-brand-tag:hover {
    background: linear-gradient(135deg, var(--ghd-primary, #0174a2) 0%, var(--ghd-primary-dark, #015a85) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ghd-brand-tag a {
    color: inherit;
    text-decoration: none;
}

/* Certificates Section */
.ghd-certificates-section .ghd-certificates-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.ghd-certificate-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--ghd-success, #28a745);
}

.ghd-certificate-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--ghd-success, #28a745);
}

.ghd-certificate-text {
    font-weight: 500;
    color: #333;
}

/* Dashboard Brands Section */
.ghd-brands-section .ghd-brands-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ghd-brand-search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.ghd-add-brand-btn {
    padding: 10px 20px;
    background: var(--ghd-primary, #0174a2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ghd-add-brand-btn:hover {
    background: var(--ghd-primary-dark, #015a85);
}

.ghd-brands-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    background: #f8f9fa;
}

.ghd-brand-item {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.ghd-brand-item:last-child {
    margin-bottom: 0;
}

.ghd-brand-item input[type="checkbox"] {
    margin-right: 8px;
}

.ghd-selected-brands {
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e8;
    border-radius: 6px;
}

.ghd-selected-brands h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.ghd-selected-brand-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--ghd-primary, #0174a2);
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin: 2px 5px 2px 0;
}

/* USPs Dashboard Section */
.ghd-usps-section .ghd-field-group {
    margin-bottom: 20px;
}

.ghd-usps-section input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.ghd-usps-section input[type="text"]:focus {
    border-color: var(--ghd-primary, #0174a2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 116, 162, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghd-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ghd-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .ghd-brands-list,
    .ghd-categories-list {
        justify-content: center;
    }
    
    .ghd-brands-search {
        flex-direction: column;
    }
    
    .ghd-add-brand-btn {
        width: 100%;
    }
}

/* CTA Dashboard Section */
.ghd-cta-section .ghd-field-group {
    margin-bottom: 25px;
}

.ghd-cta-section input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.ghd-cta-section input[type="text"]:focus {
    border-color: var(--ghd-primary, #0174a2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 116, 162, 0.1);
}

.ghd-field-description {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.ghd-cta-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--ghd-primary, #0174a2);
}

.ghd-cta-preview h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.ghd-cta-preview-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ghd-cta-preview-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.ghd-cta-preview-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.ghd-cta-preview-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ghd-cta-preview-btn.ghd-preview-phone {
    background: var(--ghd-primary, #0174a2);
    color: white;
}

.ghd-cta-preview-btn.ghd-preview-email {
    background: transparent;
    color: var(--ghd-primary, #0174a2);
    border: 2px solid var(--ghd-primary, #0174a2);
}

/* Real-time CTA preview update */
.ghd-cta-section input[type="text"] {
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .ghd-cta-preview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ghd-cta-preview-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}