/* ============================================
   SHOPEE-DESKTOP.CSS - Estilos para Desktop
   Aplicado em telas > 768px
   ============================================ */

/* Header */
.shopee-header {
    background: linear-gradient(-180deg,#f53d2d,#f63);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform .2s cubic-bezier(.4,0,.2,1);
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 .625rem;
    height: 5.3125rem;
}

.logo img {
    height: 50px;
    width: 162px;
    fill: #fff;
    display: block;
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 840px;
    margin: 0 20px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 2px;
    padding: .1875rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.09);
}

.search-input-wrapper input {
    flex: 1;
    padding: 0 .625rem;
    border: 0;
    font-size: 14px;
    outline: none;
    height: 2.5rem;
}

.search-input-wrapper input::placeholder {
    color: rgba(0,0,0,.54);
}

.search-button {
    background: #fb5533;
    color: white;
    border: 0;
    padding: 0 20px;
    border-radius: 2px;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 300;
    transition: background-color .1s cubic-bezier(.4,0,.6,1);
    outline: 0;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: #fb6445;
}

.search-button:active {
    background: #ee5130;
    box-shadow: inset 0 2px 1px 0 rgba(0,0,0,.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.26);
    margin-top: .5rem;
    overflow: hidden;
    display: none;
    z-index: 601;
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 40px 0;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--shopee-black);
    text-align: center;
}

.hero-title .highlight {
    color: var(--shopee-orange);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--shopee-black-light);
    margin-bottom: 30px;
    text-align: center;
}

.main-search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box-wrapper {
    display: flex;
    margin-bottom: 20px;
}

#main-search {
    flex: 1;
    padding: 0 16px;
    border: 2px solid var(--shopee-orange);
    border-radius: 2px 0 0 2px;
    font-size: 14px;
    outline: none;
    height: 2.5rem;
}

.btn-search-large {
    background: var(--shopee-orange);
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 0 2px 2px 0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .1s cubic-bezier(.4,0,.6,1);
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-large:hover {
    background: var(--shopee-orange-light);
}

.btn-search-large:active {
    background: var(--shopee-orange-dark);
}

.search-trends {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.trend-tag {
    color: rgba(0,0,0,.54);
    font-size: 13px;
    text-decoration: none;
    transition: color .1s cubic-bezier(.4,0,.6,1);
}

.trend-tag:hover {
    color: var(--shopee-orange);
}

/* Results Container */
.results-container {
    width: 100%;
    margin: 20px 0;
    display: flex;
    gap: 20px;
}

/* Sidebar */
.filters-sidebar {
    width: 190px;
    background: #fff;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
    height: fit-content;
    position: sticky;
    top: 120px;
    flex-shrink: 0;
}

.filters-sidebar[style*="display: none"] {
    display: none !important;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--shopee-black);
    text-transform: capitalize;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(0,0,0,.8);
    cursor: pointer;
    padding: 4px 0;
}

.filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 2px;
    cursor: pointer;
}

.filter-count {
    color: rgba(0,0,0,.54);
    font-size: 12px;
    margin-left: auto;
}

/* Products Grid */
#products-grid {
    flex: 1;
    min-width: 0;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Promoções Grid */
.promo-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 10px !important;
    margin: 20px 0 !important;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
    transition: all .1s cubic-bezier(.4,0,.6,1);
    position: relative;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-.0625rem);
    box-shadow: 0 .0625rem 20px rgba(0,0,0,.05);
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 0;
    background: var(--shopee-orange);
    color: white;
    padding: 4px 6px;
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.product-badge:before {
    content: "";
    border: 4px solid transparent;
    border-bottom-color: var(--shopee-orange-dark);
    display: inline-block;
    position: absolute;
    bottom: -4px;
    left: 2px;
    transform: rotate(45deg);
}

.product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

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

.product-info {
    padding: 8px;
}

.product-title {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0,0,0,.87);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
    line-height: 16px;
}

.product-price {
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.current-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--shopee-orange);
}

.original-price {
    font-size: 12px;
    color: rgba(0,0,0,.54);
    text-decoration: line-through;
    margin-left: 4px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 11px;
}

.stars {
    color: var(--shopee-yellow);
    letter-spacing: 1px;
    font-size: 12px;
}

.rating-count {
    color: rgba(0,0,0,.54);
}

.product-actions {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.btn-buy, .btn-share {
    flex: 1;
    padding: 6px 4px;
    border: 0;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .1s cubic-bezier(.4,0,.6,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-buy {
    background: var(--shopee-orange);
    color: white;
}

.btn-buy:hover {
    background: var(--shopee-orange-light);
}

.btn-buy:active {
    background: var(--shopee-orange-dark);
    box-shadow: inset 0 2px 1px 0 rgba(0,0,0,.05);
}

.btn-share {
    background: #fff;
    border: 1px solid rgba(0,0,0,.09);
    color: rgba(0,0,0,.8);
}

.btn-share:hover {
    background: #f8f8f8;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.09);
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--shopee-black);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2:before {
    content: "";
    background-color: var(--shopee-orange);
    width: .625rem;
    height: 1.5rem;
    margin-right: .3125rem;
}

.see-all {
    color: var(--shopee-orange);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.see-all:hover {
    color: var(--shopee-orange-dark);
}

.see-all i {
    font-size: 12px;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.category-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: rgba(0,0,0,.87);
    transition: all .1s cubic-bezier(.4,0,.6,1);
}

.category-card:hover {
    border-color: var(--shopee-orange);
    transform: translateY(-1px);
    box-shadow: 0 1px 20px 0 rgba(0,0,0,.05);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: var(--shopee-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 18px;
}

/* Pagination */
.pagination {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination-content {
    display: flex;
    gap: 4px;
    align-items: center;
}

.page-btn, .page-current {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    color: rgba(0,0,0,.8);
    transition: all .1s cubic-bezier(.4,0,.6,1);
}

.page-btn:hover {
    border-color: var(--shopee-orange);
    color: var(--shopee-orange);
}

.page-current {
    background: var(--shopee-orange);
    color: #fff;
    border-color: var(--shopee-orange);
}

/* Commercial Section */
.commercial-section {
    margin: 40px 0;
}

.commercial-card {
    background: linear-gradient(-180deg,#f53d2d,#f63);
    border-radius: 2px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.commercial-card:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.commercial-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.commercial-description {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.feature i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--shopee-yellow);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature p {
    font-size: .875rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary, .btn-whatsapp {
    padding: 12px 24px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color .1s cubic-bezier(.4,0,.6,1);
    border: 0;
}

.btn-primary {
    background: white;
    color: var(--shopee-orange);
}

.btn-primary:hover {
    background: #f8f8f8;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.commercial-note {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* ============================================
   FOOTER - ESTILO SHOPEE OFICIAL
   ============================================ */
.shopee-footer {
    background: #fff;
    border-top: 4px solid var(--shopee-orange);
    padding: 40px 0 20px;
    margin-top: 60px;
    color: rgba(0,0,0,.54);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,.87);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    margin-bottom: 8px;
}

.footer-col-links a {
    color: rgba(0,0,0,.54);
    text-decoration: none;
    font-size: 12px;
    transition: color .1s ease;
}

.footer-col-links a:hover {
    color: var(--shopee-orange);
}

/* Ícones de pagamento */
.footer-payment-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-payment-icons li {
    width: calc(33.333% - 6px);
}

.footer-payment-icons img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.09);
}

/* Redes sociais */
.footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links li {
    margin-bottom: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,.54);
    text-decoration: none;
    font-size: 12px;
    transition: color .1s ease;
}

.footer-social-links a:hover {
    color: var(--shopee-orange);
}

.footer-social-links img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* App download */
.footer-app-download {
    display: flex;
    gap: 10px;
}

.footer-qr-code {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 4px;
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-app-buttons img {
    height: 24px;
    width: auto;
}

/* Regiões */
.footer-regions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,.09);
    border-bottom: 1px solid rgba(0,0,0,.09);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(0,0,0,.54);
}

.footer-country-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.country-label {
    font-size: 13px;
    color: rgba(0,0,0,.87);
    margin-right: 5px;
}

.country-link {
    color: rgba(0,0,0,.54);
    text-decoration: none;
    font-size: 13px;
    transition: color .1s ease;
}

.country-link:hover {
    color: var(--shopee-orange);
}

.country-link:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(0,0,0,.26);
}

/* Informações legais */
.footer-legal {
    font-size: 12px;
    color: rgba(0,0,0,.54);
    line-height: 1.6;
    text-align: center;
}

/* Mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-regions {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-country-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-app-download {
        justify-content: center;
    }
}

.footer-brand img {
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(32%) sepia(93%) saturate(1583%) hue-rotate(347deg) brightness(96%) contrast(97%);
}

.copyright {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(0,0,0,.87);
}

.link-group a {
    display: block;
    color: rgba(0,0,0,.54);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 13px;
    transition: color .1s cubic-bezier(.4,0,.6,1);
}

.link-group a:hover {
    color: var(--shopee-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,.09);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(0,0,0,.54);
}

.zaibotz-link {
    color: var(--shopee-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,.14);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlide .2s cubic-bezier(.4,0,.6,1);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5a5a5a;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity .2s ease;
}

.modal-close:hover {
    opacity: 0.9;
}

.modal-body h3 {
    margin-bottom: 20px;
    color: var(--shopee-black);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

#generated-link {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    font-size: 14px;
    background: #f5f5f5;
    color: rgba(0,0,0,.8);
}

.btn-copy {
    padding: 12px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    color: rgba(0,0,0,.8);
    cursor: pointer;
    transition: all .1s cubic-bezier(.4,0,.6,1);
}

.btn-copy:hover {
    background: #f8f8f8;
}

.btn-copy:active {
    background: #f5f5f5;
    box-shadow: inset 0 2px 1px 0 rgba(0,0,0,.05);
}

.btn-copy.copied {
    background: var(--shopee-green);
    color: #fff;
    border-color: var(--shopee-green);
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin: 25px 0;
}

.modal-note {
    font-size: 13px;
    color: rgba(0,0,0,.54);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,.09);
}

/* Loading States */
.loading-spinner, .loading-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(0,0,0,.54);
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
    width: 100%;
}

.loading-spinner i, .loading-overlay i {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--shopee-orange);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error States */
.error-message, .no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(0,0,0,.54);
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
    width: 100%;
}

.error-message i, .no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--shopee-red);
}

.products-grid .no-results {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

/* ============================================
   HEADER - Top Navbar Simplificada
   ============================================ */
.top-navbar {
    background: rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 34px;
}

.top-navbar-content {
    display: flex;
    justify-content: space-between; /* MUDA DE flex-end PARA space-between */
    align-items: center;
    height: 34px;
    width: 100%;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: opacity 0.2s;
}

.navbar-link:hover {
    opacity: 0.8;
}

.separator {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    margin: 0 2px;
}

/* Texto "Siga-nos no" - BRANCO */
.navbar-text {
    color: #ffffff !important; /* Forçar branco */
    font-size: 13px;
    font-weight: 300;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 8px; /* Reduzido de 15px para 8px */
    align-items: center;
}

.social-icon {
    color: #ffffff !important; /* Forçar branco */
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    opacity: 0.9;
    line-height: 1;
}

.social-icon:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

/* Header principal - resto permanece igual */
.shopee-header {
    background: linear-gradient(-180deg, #f53d2d, #f63);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);
    width: 100%;
}

.header-main {
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 162px;
    height: 50px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.search-wrapper {
    display: flex;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.search-input {
    flex: 1;
    height: 40px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    width: 60px;
    height: 40px;
    background: #fb5533;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: #fb6445;
}

.search-button:active {
    background: #ee5130;
    box-shadow: inset 0 2px 1px 0 rgba(0,0,0,.05);
}

/* Trending Searches */
.trending-searches {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trend-item {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    cursor: pointer;
}

.trend-item:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cart */
.cart-wrapper {
    position: relative;
}

.cart-link {
    color: #fff;
    font-size: 24px;
    position: relative;
    display: inline-block;
    transition: opacity 0.2s;
}

.cart-link:hover {
    opacity: 0.9;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #fff;
    color: #ee4d2d;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ee4d2d;
    padding: 0 4px;
}
