/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

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

/* Header */
.header {
    background-color: #FFF3D6;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #374151;
}

.us-flag {
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 40px;
    height: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EAF2FB 0%, #F6D6C3 100%);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 22px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: white;
    padding: 20px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    min-height: 120px;
}

.feature-icon {
    width: 30px;
    height: 30px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

.benefits-subtitle {
    text-align: center;
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-placeholder {
    margin-top: 40px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta-button {
    background-color: #374151;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(55, 65, 81, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-cta-button:hover {
    background-color: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.4);
}

.hero-cta-button:focus {
    outline: 3px solid #F6D6C3;
    outline-offset: 2px;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #374151;
    margin-bottom: 50px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 20px;
    margin-bottom: 50px;
    color: #374151;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFF3D6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
}

.service-card p {
    color: #374151;
    font-size: 18px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #EAF2FB;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #F6D6C3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
}

.step-item p {
    color: #374151;
    font-size: 18px;
}

.how-it-works-image-placeholder {
    text-align: center;
}

.how-it-works-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #DCEFE3;
}

.products-subtitle {
    text-align: center;
    font-size: 20px;
    color: #374151;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin: 20px 30px 15px;
}

.product-card p {
    color: #374151;
    margin: 0 30px 20px;
    font-size: 18px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin: 0 30px 20px;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    background-color: #374151;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    transition: background-color 0.2s ease;
    min-height: 50px;
}

.cta-button:hover {
    background-color: #4B5563;
}

.cta-button:focus {
    outline: 3px solid #F6D6C3;
    outline-offset: 2px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1;
    min-width: 400px;
}

.benefits-image-placeholder {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #374151;
    font-size: 18px;
}

.benefits-image-placeholder {
    display: flex;
    justify-content: center;
}

.benefits-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F6D6C3;
}

/* Marketplace Guide Form */
.marketplace-guide-form {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.form-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.5;
}

.guide-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.guide-form-fields input {
    padding: 18px 20px;
    font-size: 18px;
    border: 2px solid #DCEFE3;
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 56px;
    transition: border-color 0.2s ease;
}

.guide-form-fields input:focus {
    outline: none;
    border-color: #374151;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
    accent-color: #374151;
}

.form-checkbox label {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    cursor: pointer;
}

.form-submit-btn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

.form-submit-btn:hover {
    background-color: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-disclaimer {
    font-size: 14px;
    color: #6B7280;
    margin-top: 20px;
    text-align: center;
    line-height: 1.4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.contact-item p {
    color: #374151;
    font-size: 18px;
}

.contact-item a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 30px;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-fields input,
.contact-form-fields textarea {
    padding: 15px;
    font-size: 18px;
    border: 2px solid #DCEFE3;
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 50px;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
    outline: none;
    border-color: #374151;
}

/* Footer */
.footer {
    background-color: #374151;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.footer-text {
    max-width: 400px;
    text-align: center;
}

.footer-text p {
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #4B5563;
}

.footer-bottom p {
    font-size: 16px;
    color: #D1D5DB;
}

.legal-disclaimer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #4B5563;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-disclaimer h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.legal-disclaimer p {
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Product of the Day Widget */
.product-of-day {
    padding: 60px 0;
    background-color: #EAF2FB;
}

.widget-container {
    max-width: 1000px;
    margin: 0 auto;
}

.widget-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #374151;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.product-wheel {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wheel-container {
    flex: 0 0 300px;
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6D6C3 0%, #DCEFE3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wheel-item:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.wheel-item:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.wheel-item.active {
    background: #F6D6C3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wheel-item:nth-child(1).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(2).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-item:nth-child(3).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(4).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.wheel-item span {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

.featured-product {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.featured-image {
    flex: 0 0 150px;
}

.featured-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.featured-details {
    flex: 1;
}

.featured-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.featured-details p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-price {
    font-size: 28px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* Catalog Feed */
.catalog-feed {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #DCEFE3;
    background: white;
    color: #374151;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #DCEFE3;
    border-color: #374151;
}

.catalog-newsfeed {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 40px;
}

.catalog-newsfeed::-webkit-scrollbar {
    width: 8px;
}

.catalog-newsfeed::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb {
    background: #DCEFE3;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

.catalog-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.catalog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.catalog-icon {
    width: 50px;
    height: 50px;
}

.item-content {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.item-image {
    flex: 0 0 120px;
}

.item-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.item-details p {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 15px;
}

.item-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.item-category {
    background: #DCEFE3;
    color: #374151;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.browse-btn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.browse-btn:hover {
    background-color: #4B5563;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    background-color: #DCEFE3;
    color: #374151;
    border: 2px solid #374151;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background-color: #374151;
    color: white;
}

/* Hidden items for filtering */
.catalog-item.hidden {
    display: none;
}

/* Product of the Day Widget */
.product-of-day {
    padding: 60px 0;
    background-color: #EAF2FB;
}

.widget-container {
    max-width: 1000px;
    margin: 0 auto;
}

.widget-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #374151;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.product-wheel {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wheel-container {
    flex: 0 0 300px;
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6D6C3 0%, #DCEFE3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wheel-item:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.wheel-item:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.wheel-item.active {
    background: #F6D6C3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wheel-item:nth-child(1).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(2).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-item:nth-child(3).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(4).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.wheel-item span {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

.featured-product {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.featured-image {
    flex: 0 0 150px;
}

.featured-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.featured-details {
    flex: 1;
}

.featured-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.featured-details p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-price {
    font-size: 28px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* Catalog Feed */
.catalog-feed {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #DCEFE3;
    background: white;
    color: #374151;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #DCEFE3;
    border-color: #374151;
}

.catalog-newsfeed {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 40px;
}

.catalog-newsfeed::-webkit-scrollbar {
    width: 8px;
}

.catalog-newsfeed::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb {
    background: #DCEFE3;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

.catalog-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.catalog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.catalog-icon {
    width: 50px;
    height: 50px;
}

.item-content {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.item-image {
    flex: 0 0 120px;
}

.item-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.item-details p {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 15px;
}

.item-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.item-category {
    background: #DCEFE3;
    color: #374151;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.browse-btn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.browse-btn:hover {
    background-color: #4B5563;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    background-color: #DCEFE3;
    color: #374151;
    border: 2px solid #374151;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background-color: #374151;
    color: white;
}

/* Hidden items for filtering */
.catalog-item.hidden {
    display: none;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .about-stats {
        gap: 30px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .benefits-text {
        min-width: auto;
    }
    
    .benefits-image-placeholder {
        min-width: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .marketplace-guide-form {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 18px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-wheel {
        flex-direction: column;
        gap: 30px;
    }
    
    .wheel-container {
        flex: none;
    }
    
    .wheel {
        width: 250px;
        height: 250px;
    }
    
    .featured-product {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-image {
        flex: none;
    }
    
    .catalog-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .item-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .item-image {
        flex: none;
        align-self: center;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-button {
        padding: 18px 30px;
        font-size: 18px;
    }
    
    .feature-item {
        padding: 10px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .widget-title {
        font-size: 24px;
    }
    
    .product-wheel {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .wheel-container {
        flex: none;
    }
    
    .wheel {
        width: 200px;
        height: 200px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .wheel-icon {
        width: 20px;
        height: 20px;
    }
    
    .featured-product {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-image {
        flex: none;
    }
    
    .catalog-newsfeed {
        max-height: 600px;
    }
    
    .catalog-item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .item-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .item-image {
        flex: none;
        align-self: center;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .widget-title {
        font-size: 24px;
    }
    
    .product-wheel {
        padding: 20px;
    }
    
    .wheel {
        width: 200px;
        height: 200px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .wheel-icon {
        width: 20px;
        height: 20px;
    }
    
    .catalog-newsfeed {
        max-height: 600px;
    }
    
    .catalog-item {
        padding: 20px;
    }
    
    .marketplace-guide-form {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .guide-form-fields input {
        padding: 15px 18px;
        font-size: 16px;
    }
    
    .form-submit-btn {
        padding: 18px 30px;
        font-size: 18px;
    }
}