:root {
    /* Cores oficiais do Manual de Identidade Visual Flowtion */
    --flowtion-white: #f5fff8;      /* Branco/background principal */
    --flowtion-green-light: #a9ec55; /* Verde claro/accents */
    --flowtion-green-normal: #47ad38; /* Verde normal/primary */
    --flowtion-green-dark: #004024;  /* Verde escuro/text/buttons */
    --flowtion-purple-dark: #1f0a45; /* Roxo escuro/contraste */
    --flowtion-purple-normal: #8354b8; /* Roxo normal/secondary */
    --flowtion-purple-light: #ce97f4; /* Roxo claro/highlights */
    
    /* Aliases para compatibilidade */
    --bg-primary: var(--flowtion-white);
    --green-light: var(--flowtion-green-light);
    --green-normal: var(--flowtion-green-normal);
    --green-dark: var(--flowtion-green-dark);
    --purple-dark: var(--flowtion-purple-dark);
    --purple-normal: var(--flowtion-purple-normal);
    --purple-light: var(--flowtion-purple-light);
    
    /* Sombras com cores oficiais */
    --shadow-soft: rgba(0, 64, 36, 0.08);
    --shadow-medium: rgba(0, 64, 36, 0.15);
    
    /* Cores derivadas para elementos específicos */
    --table-bg: var(--flowtion-white);
    --table-stripe: rgba(169, 236, 85, 0.05);
    --table-hover: rgba(169, 236, 85, 0.1);
    --table-border: rgba(169, 236, 85, 0.2);
    --text-muted: rgba(0, 64, 36, 0.6);
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--green-dark);
    line-height: 1.6;
}

/* Search container - Homepage */
.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.marketplace-logo {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 4px 8px var(--shadow-soft);
}

.marketplace-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 400;
}

/* Search input - Main */
.flowtion-search-input {
    width: 584px;
    max-width: 90vw;
    height: 56px;
    border: 2px solid rgba(169, 236, 85, 0.2);
    border-radius: 28px;
    padding: 0 24px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px var(--shadow-medium);
    transition: all 0.3s ease;
    outline: none;
    color: var(--green-dark);
}

.flowtion-search-input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(169, 236, 85, 0.1), 0 12px 50px var(--shadow-medium);
    transform: translateY(-2px);
}

.flowtion-search-input::placeholder {
    color: var(--text-muted);
}

/* Search toggle */
.search-toggle {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.search-toggle-input {
    display: none;
}

.search-toggle label {
    padding: 12px 24px;
    border-radius: 12px;
    background: transparent;
    color: var(--green-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 14px;
}

.search-toggle-input:checked + label {
    background: var(--gradient-primary);
    color: var(--green-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(169, 236, 85, 0.3);
}

.search-toggle label:hover {
    background: rgba(169, 236, 85, 0.1);
    border-color: var(--green-light);
}

/* Search button */
.flowtion-search-btn {
    background: var(--flowtion-green-normal);
    border: none;
    border-radius: 16px;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(71, 173, 56, 0.3);
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.flowtion-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(71, 173, 56, 0.4);
    color: white;
    background: var(--flowtion-green-dark);
    text-decoration: none;
}

/* Results page header */
.search-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--table-border);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 20px var(--shadow-soft);
    margin-bottom: 32px;
}

.marketplace-logo-small {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    white-space: nowrap;
}

.marketplace-logo-small:hover {
    text-decoration: none;
}

/* Small search input */
.flowtion-search-input-small {
    width: 400px;
    height: 40px;
    border: 2px solid rgba(169, 236, 85, 0.2);
    border-radius: 20px;
    padding: 0 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    outline: none;
    color: var(--green-dark);
}

.flowtion-search-input-small:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(169, 236, 85, 0.1);
}

.search-toggle-input-small {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 4px;
}

.flowtion-search-btn-small {
    background: var(--flowtion-green-normal);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(71, 173, 56, 0.3);
}

.flowtion-search-btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 173, 56, 0.4);
    background: var(--flowtion-green-dark);
}

/* Results container */
.results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.results-info {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0 4px;
}

/* Results table */
.results-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--table-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow-medium);
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    background: var(--table-bg);
    color: var(--green-dark);
    font-weight: 600;
    padding: 20px 16px;
    text-align: left;
    border-bottom: 2px solid var(--table-border);
    font-size: 14px;
}

.results-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--table-border);
    font-size: 14px;
    vertical-align: middle;
}

.results-table tr:nth-child(even) {
    background: var(--table-stripe);
}

.results-table tr:hover {
    background: var(--table-hover);
}

.results-table a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.results-table a:hover {
    color: var(--purple-dark);
    text-decoration: underline;
}

/* Detail pages */
.detail-header {
    padding: 20px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--table-border);
}

.back-link {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--purple-dark);
    transform: translateX(-4px);
}

.product-detail,
.store-detail {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--table-border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 8px 40px var(--shadow-medium);
}

.product-title,
.store-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.product-description,
.store-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-prices {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.price-brl,
.price-usd {
    background: var(--flowtion-purple-normal);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.store-info,
.seller-info {
    color: var(--text-muted);
    font-size: 14px;
    padding: 12px 16px;
    background: rgba(169, 236, 85, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--green-light);
}

.products-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin: 32px 0 16px;
}

.store-products-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--table-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow-medium);
}

/* Error message */
.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #ff4757;
    font-weight: 500;
    margin: 40px auto;
    max-width: 600px;
}

/* ==============================================
   HOMEPAGE STYLES
   ============================================== */

/* Homepage Container */
.homepage-container {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 24px;
}

.flowtion-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px var(--shadow-soft));
    transition: transform 0.3s ease;
}

.flowtion-logo:hover {
    transform: scale(1.05);
}

.marketplace-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--flowtion-green-dark);
    margin-bottom: 16px;
    text-shadow: 0 4px 8px var(--shadow-soft);
    line-height: 1.1;
}

.marketplace-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.5;
}

/* Search Form Container */
.search-form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.search-form-container input[type="text"] {
    width: 100%;
    height: 56px;
    border: 2px solid rgba(169, 236, 85, 0.2);
    border-radius: 28px;
    padding: 0 24px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px var(--shadow-medium);
    transition: all 0.3s ease;
    outline: none;
    color: var(--flowtion-green-dark);
}

.search-form-container input[type="text"]:focus {
    border-color: var(--flowtion-green-light);
    box-shadow: 0 0 0 4px rgba(169, 236, 85, 0.1), 0 12px 50px var(--shadow-medium);
    transform: translateY(-2px);
}

.search-form-container input[type="text"]::placeholder {
    color: var(--text-muted);
}

.search-form-container button,
.search-form-container input[type="submit"] {
    background: var(--flowtion-green-normal);
    border: none;
    border-radius: 16px;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(71, 173, 56, 0.3);
}

.search-form-container button:hover,
.search-form-container input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(71, 173, 56, 0.4);
    background: var(--flowtion-green-dark);
}

/* Featured Section */
.featured-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.featured-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--flowtion-green-light);
    border-radius: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169, 236, 85, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 40px var(--shadow-medium);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px var(--shadow-medium);
    border-color: var(--flowtion-green-light);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.product-price {
    flex-shrink: 0;
}

.price-value {
    background: var(--flowtion-purple-normal);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.product-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 16px;
}

.store-info {
    flex: 1;
}

.store-name {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.product-link {
    color: var(--flowtion-green-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-link:hover {
    color: var(--flowtion-purple-dark);
    transform: translateX(2px);
}

/* No Products State */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* View All Button */
.view-all-container {
    text-align: center;
}

.view-all-btn {
    background: var(--flowtion-green-normal);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(71, 173, 56, 0.3);
    display: inline-block;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(71, 173, 56, 0.4);
    text-decoration: none;
    color: white;
    background: var(--flowtion-green-dark);
}

/* ==============================================
   SEARCH RESULTS STYLES
   ============================================== */

/* Products list styling */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.product-row-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169, 236, 85, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 24px;
}

.product-row-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-color: var(--flowtion-green-light);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-main {
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(169, 236, 85, 0.1);
}

.store-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.product-actions {
    flex-shrink: 0;
}

.product-link-btn {
    background: var(--flowtion-green-normal);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-link-btn:hover {
    background: var(--flowtion-green-dark);
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
}

/* No results state */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--table-border);
    border-radius: 20px;
    margin: 32px auto;
    max-width: 600px;
}

.no-results h2 {
    color: var(--flowtion-green-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.no-results p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.no-results a {
    color: var(--flowtion-green-dark);
    text-decoration: none;
    font-weight: 600;
}

.no-results a:hover {
    color: var(--flowtion-purple-dark);
    text-decoration: underline;
}

/* Search form in header */
.search-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form-header input {
    width: 400px;
    height: 40px;
    border: 2px solid rgba(169, 236, 85, 0.2);
    border-radius: 20px;
    padding: 0 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    outline: none;
    color: var(--flowtion-green-dark);
}

.search-form-header input:focus {
    border-color: var(--flowtion-green-light);
    box-shadow: 0 0 0 3px rgba(169, 236, 85, 0.1);
}

/* ==============================================
   PRODUCT DETAIL STYLES
   ============================================== */

/* Product detail container */
.product-detail-container {
    min-height: 100vh;
    background: var(--flowtion-white);
}

/* Header */
.detail-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(169, 236, 85, 0.2);
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 64, 36, 0.08);
}

.header-navigation {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--flowtion-green-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--flowtion-purple-normal);
    transform: translateX(-4px);
    text-decoration: none;
}

/* Main content */
.product-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
}

/* Product detail card */
.product-detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169, 236, 85, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 64, 36, 0.15);
}

/* Product header */
.product-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(169, 236, 85, 0.1);
}

.product-title-section {
    flex: 1;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--flowtion-green-dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.product-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--flowtion-purple-normal);
    color: white;
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 600;
}

.price-currency {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 1.3rem;
}

/* Store info card */
.store-info-card {
    background: rgba(169, 236, 85, 0.1);
    border: 1px solid rgba(169, 236, 85, 0.2);
    border-radius: 16px;
    padding: 20px;
    min-width: 250px;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.store-name-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    text-decoration: none;
}

.store-name-link:hover {
    color: var(--flowtion-purple-normal);
    text-decoration: none;
}

.store-description {
    font-size: 0.9rem;
    color: var(--flowtion-green-dark);
    opacity: 0.7;
    line-height: 1.4;
}

/* Section styling */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    margin: 0 0 16px 0;
}

.product-description-section {
    margin-bottom: 40px;
}

.product-description-content {
    color: var(--flowtion-green-dark);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Specs section */
.product-specs-section {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(245, 255, 248, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(169, 236, 85, 0.1);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(169, 236, 85, 0.2);
    box-shadow: 0 2px 10px rgba(0, 64, 36, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 64, 36, 0.1);
}

.spec-label {
    font-weight: 500;
    color: var(--flowtion-green-dark);
    opacity: 0.7;
    font-size: 0.95rem;
}

.spec-value {
    font-weight: 600;
    color: var(--flowtion-green-dark);
    font-size: 0.95rem;
}

.status-active {
    color: var(--flowtion-green-normal);
}

/* CTA section */
.product-cta-section {
    background: rgba(169, 236, 85, 0.05);
    border: 1px solid rgba(169, 236, 85, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    margin: 0 0 8px 0;
}

.cta-description {
    color: var(--flowtion-green-dark);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-purchase-primary {
    background: var(--flowtion-green-normal);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-purchase-primary:hover {
    background: var(--flowtion-green-dark);
    transform: translateY(-1px);
}

.btn-purchase-secondary {
    background: transparent;
    color: var(--flowtion-purple-normal);
    border: 2px solid var(--flowtion-purple-normal);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-purchase-secondary:hover {
    background: var(--flowtion-purple-normal);
    color: white;
}

/* Support sidebar */
.support-sidebar {
    display: flex;
    flex-direction: column;
}

/* Support card */
.support-card {
    background: rgba(131, 84, 184, 0.1);
    border: 1px solid rgba(131, 84, 184, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 64, 36, 0.08);
}

.support-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--flowtion-green-dark);
    margin: 0 0 12px 0;
}

.support-description {
    font-size: 0.95rem;
    color: var(--flowtion-green-dark);
    opacity: 0.7;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.support-link {
    background: var(--flowtion-purple-normal);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-link:hover {
    background: var(--flowtion-purple-dark);
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    /* Homepage responsive */
    .marketplace-title {
        font-size: 3rem;
    }
    
    .marketplace-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 32px 16px;
    }
    
    .flowtion-logo {
        height: 60px;
    }
    
    .featured-section {
        padding: 40px 16px 60px;
    }
    
    .featured-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .search-form-container input[type="text"] {
        height: 48px;
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* General responsive */
    .flowtion-search-input {
        width: 100%;
        height: 48px;
        font-size: 14px;
        padding: 0 20px;
    }
    
    .search-toggle {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-toggle label {
        padding: 10px 20px;
        text-align: center;
    }
    
    .search-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .flowtion-search-input-small {
        width: 100%;
    }
    
    .search-form-header input {
        width: 100%;
    }
    
    /* Search results responsive */
    .products-list {
        gap: 12px;
    }
    
    .product-row-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .product-actions {
        align-self: stretch;
    }
    
    .product-link-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Product detail responsive */
    .header-navigation {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
    }
    
    .product-detail-card {
        padding: 24px;
    }
    
    .product-detail-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .product-specs-section {
        padding: 20px;
        margin-bottom: 32px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .store-info-card {
        min-width: auto;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .btn-purchase-primary,
    .btn-purchase-secondary {
        width: 100%;
    }
    
    .support-card {
        padding: 20px;
        margin-top: 0;
    }
    
    .no-results {
        margin: 16px;
        padding: 40px 20px;
    }
    
    .no-results h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .marketplace-title {
        font-size: 2.5rem;
    }
    
    .flowtion-logo {
        height: 50px;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
}

/* Logo image styling */
.marketplace-logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 8px var(--shadow-soft));
    transition: transform 0.3s ease;
}

.marketplace-logo-small:hover .marketplace-logo-img {
    transform: scale(1.05);
}