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

:root {
    --sovre-navy: #183A66;
    --sovre-blue: #1E6BB8;
    --sovre-white: #FFFFFF;
    --sovre-gray: #F4F6F8;
    --sovre-amber: #F59E0B;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--slate-900);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Home Page - New Design */
.home-container-new {
    min-height: 100vh;
    background: var(--sovre-navy);
    color: white;
    display: flex;
    flex-direction: column;
}

.home-main-content {
    flex: 1;
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
}

.home-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .home-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.home-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
}

.home-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .home-headline {
        font-size: 3.5rem;
    }
}

.highlight-blue {
    color: var(--sovre-blue);
}

.home-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-300);
    max-width: 600px;
}

.home-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .home-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn-primary-home {
    padding: 1rem 2rem;
    background: var(--sovre-blue);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30, 107, 184, 0.3);
}

.btn-primary-home:hover {
    background: #1a5fa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 107, 184, 0.4);
}

.btn-secondary-home {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-secondary-home:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.home-future-phase {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-400);
    margin-top: 1rem;
    max-width: 600px;
}

.home-right {
    display: flex;
    align-items: flex-start;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-300);
}

.home-bottom-cta {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
}

.bottom-cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bottom-cta-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.bottom-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-300);
    text-align: center;
    flex: 1;
}

@media (min-width: 768px) {
    .bottom-cta-text {
        text-align: left;
    }
}

.btn-bottom-cta {
    padding: 0.875rem 2rem;
    background: white;
    color: var(--sovre-navy);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-bottom-cta:hover {
    background: var(--sovre-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Home Page - Old Design (kept for reference) */
.home-container {
    min-height: 100vh;
    background: var(--sovre-navy);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
}

.bg-blob-1 {
    width: 24rem;
    height: 24rem;
    background: var(--sovre-blue);
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.bg-blob-2 {
    width: 16rem;
    height: 16rem;
    background: white;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.home-header {
    padding: 4rem 1rem 6rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.home-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.home-tagline {
    font-size: 1.5rem;
    color: var(--slate-300);
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

.highlight {
    color: white;
    font-weight: 600;
    border-bottom: 2px solid var(--sovre-blue);
}

.sub-tagline {
    font-size: 1rem;
    color: var(--slate-400);
    display: block;
    margin-top: 1rem;
}

.features-section {
    position: relative;
    z-index: 20;
    margin-top: -4rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sovre-navy);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.cta-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.phase-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--sovre-blue);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(30, 107, 184, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: white;
    color: var(--sovre-navy);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    border-color: var(--sovre-navy);
}

.arrow {
    transition: transform 0.3s;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

.home-footer {
    padding: 1.5rem;
    text-align: center;
    color: var(--slate-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Header Navigation */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--sovre-navy);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
}

.logo-sub {
    color: var(--sovre-blue);
    font-weight: 400;
    font-size: 0.875rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--sovre-navy);
}

.nav-link.active {
    color: var(--sovre-navy);
    border-bottom-color: var(--sovre-blue);
}

.language-switcher {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    position: relative;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0.5rem center;
    background-size: 1rem 1rem;
    padding-left: 2.5rem;
}

.language-switcher::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--slate-500);
    pointer-events: none;
}

/* Recommerce Landing */
.hero-section {
    background: var(--sovre-navy);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--slate-200);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--sovre-blue);
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: white;
    color: var(--sovre-navy);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--sovre-navy);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--sovre-gray);
}

.problem-section {
    padding: 5rem 1rem;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 1.5rem;
}

.problem-description {
    font-size: 1.25rem;
    color: var(--slate-700);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #FEE2E2;
    border-radius: 0.75rem;
    border-left: 4px solid #EF4444;
}

.problem-icon {
    font-size: 1.875rem;
    flex-shrink: 0;
}

.problem-card h3 {
    font-weight: 700;
    color: var(--slate-800);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.problem-card p {
    color: var(--slate-600);
    font-size: 0.875rem;
}

.problem-image {
    margin-top: 2rem;
}

.problem-image img {
    width: 100%;
    max-width: 28rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.solution-section {
    padding: 5rem 1rem;
    background: var(--sovre-gray);
    border-radius: 0.5rem;
    text-align: center;
}

.solution-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 2rem;
}

.solution-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.step-card.highlight {
    border: 2px solid var(--sovre-blue);
}

.step-icon {
    font-size: 3rem;
    color: var(--sovre-blue);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.solution-note {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin: 1.5rem auto;
    max-width: 42rem;
}

.benefits-section {
    padding: 5rem 1rem;
    background: white;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 2rem;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #D1FAE5;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10B981;
}

.benefit-icon {
    font-size: 1.875rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--slate-700);
    line-height: 1.6;
}

.testimonials-section {
    padding: 5rem 1rem;
    background: var(--sovre-gray);
    border-radius: 0.5rem;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 2rem;
}

.testimonials-section > p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    font-size: 4.5rem;
    color: var(--sovre-blue);
    opacity: 0.2;
    z-index: 0;
}

.stars {
    color: #FCD34D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    font-style: italic;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
    color: var(--slate-800);
}

.testimonial-result {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-align: right;
}

.final-cta {
    background: var(--sovre-navy);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: var(--slate-200);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Catalog */
.catalog-main {
    min-height: calc(100vh - 5rem);
    background: linear-gradient(to bottom, #f8fafc 0%, var(--sovre-gray) 100%);
    padding: 3rem 1rem;
}

.catalog-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .catalog-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .catalog-title-section {
        flex: 0 0 auto;
    }
    
    .search-bar {
        flex: 0 0 auto;
    }
}

.catalog-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalog-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sovre-navy);
    letter-spacing: -0.02em;
}

.btn-about {
    padding: 0.5rem 1rem;
    background: var(--sovre-blue);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-about:hover {
    background: var(--sovre-navy);
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: 24rem;
}

.search-bar::before {
    content: "🔍";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    z-index: 1;
    pointer-events: none;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid var(--slate-200);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--sovre-blue);
    box-shadow: 0 4px 12px rgba(30, 107, 184, 0.15);
}

.filters-bar {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--slate-200);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .filters-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.filter-checkbox input {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.sort-control select {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding: 0.5rem 0;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sovre-blue), var(--sovre-navy));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--sovre-blue);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.sold {
    opacity: 0.6;
    filter: grayscale(100%);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--sovre-gray) 0%, #e2e8f0 100%);
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--slate-400);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-available {
    background: rgba(30, 107, 184, 0.95);
    color: white;
}

.badge-sold {
    background: rgba(30, 41, 59, 0.95);
    color: white;
}

.product-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-name {
    font-weight: 600;
    color: var(--sovre-navy);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.product-description-short {
    font-size: 0.8125rem;
    color: var(--slate-600);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.product-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--sovre-navy);
    letter-spacing: -0.01em;
}

.empty-state {
    text-align: center;
    padding: 5rem 1rem;
}

.empty-state p:first-child {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--sovre-navy);
    margin-bottom: 0.5rem;
}

.empty-state p:last-child {
    color: var(--slate-500);
}

.error-message {
    text-align: center;
    padding: 3rem 1rem;
    background: #FEE2E2;
    border: 1px solid #EF4444;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.error-message p {
    color: #DC2626;
    font-weight: 500;
    margin: 0.5rem 0;
}

/* Product Detail */
.product-main {
    min-height: calc(100vh - 5rem);
    background: var(--sovre-gray);
    padding: 2rem 1rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--sovre-blue);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.product-detail-grid {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-image-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--sovre-gray);
    position: relative;
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--slate-300) transparent;
}

.product-image-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-image-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.product-image-thumbnails::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: var(--sovre-gray);
}

.thumbnail-item:hover {
    border-color: var(--sovre-blue);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--sovre-blue);
    box-shadow: 0 0 0 2px rgba(30, 107, 184, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 0.5rem;
}

.product-detail-category {
    color: var(--slate-500);
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sovre-navy);
    margin-bottom: 1.5rem;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: var(--slate-700);
}

.product-description {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-description-content {
    margin-top: 0.5rem;
    line-height: 1.7;
}

.product-description-content strong {
    color: var(--slate-800);
    font-weight: 600;
}

.product-description-content br {
    margin-bottom: 0.5rem;
}

.buy-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-button:hover {
    background: #128C7E;
}

/* Footer */
.footer {
    background: var(--sovre-navy);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .home-title {
        font-size: 2rem;
    }
    
    .home-tagline {
        font-size: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .product-image-main {
        aspect-ratio: 1;
    }
    
    .product-image-thumbnails {
        gap: 0.5rem;
        padding: 0.25rem 0;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-detail-info h1 {
        font-size: 1.5rem;
    }
    
    .product-detail-price {
        font-size: 1.5rem;
    }
    
    /* Home page new design mobile */
    .home-main-content {
        padding: 2rem 1rem;
    }
    
    .home-layout {
        gap: 2rem;
    }
    
    .home-headline {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .home-description {
        font-size: 1rem;
    }
    
    .home-cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-home,
    .btn-secondary-home {
        width: 100%;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .bottom-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-bottom-cta {
        width: 100%;
    }
    
    /* Catalog mobile */
    .catalog-main {
        padding: 1.5rem 0.75rem;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .catalog-title-section {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .catalog-title-section h1 {
        font-size: 1.75rem;
        flex: 1;
        min-width: 0;
    }
    
    .search-bar {
        width: 100%;
        max-width: 100%;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .filter-checkbox {
        width: 100%;
    }
    
    .sort-control {
        width: 100%;
    }
    
    .sort-control select {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-content {
        padding: 0.875rem;
    }
    
    .product-name {
        font-size: 0.8125rem;
        min-height: 2.25rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-category {
        font-size: 0.6875rem;
    }
    
    /* Header mobile */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
    }
    
    .header-content {
        padding: 0.75rem;
        height: auto;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .logo-img {
        width: 2rem;
        height: 2rem;
    }
    
    .nav-links {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        flex: 1;
        text-align: center;
        border-radius: 0.375rem;
        transition: background 0.2s;
    }
    
    .nav-link:hover {
        background: var(--sovre-gray);
    }
    
    .nav-link.active {
        background: var(--sovre-blue);
        color: white;
        border-bottom: none;
    }
    
    .language-switcher {
        width: auto;
        min-width: 60px;
        padding: 0.5rem 1.75rem 0.5rem 2.25rem;
        font-size: 0.875rem;
    }
    
    /* Recommerce sections mobile */
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .problem-section,
    .solution-section,
    .benefits-section,
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .problem-section h2,
    .solution-section h2,
    .benefits-section h2,
    .testimonials-section h2 {
        font-size: 1.75rem;
    }
    
    .problem-description,
    .solution-subtitle,
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .final-cta {
        padding: 3rem 1rem;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .home-headline {
        font-size: 1.75rem;
    }
    
    .catalog-title-section h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}