@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes loading {
    0% {
        background-position: 200%0
    }

    to {
        background-position: -200%0
    }
}

body {
    background-color: var(--bg-light);
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color: var(--text-dark);
    background-color: #fff
}

.trade-hero {
    background: linear-gradient(135deg,var(--primary-teal) 0%,var(--primary-teal-dark) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center
}

.steps-nav {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0
}

.step-dot,.step-line {
    background: var(--border-color);
    transition: all .3s
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem
}

.step-dot.active {
    background: var(--primary-teal);
    color: #fff
}

.step-dot.completed {
    color: #fff
}

.step-line {
    width: 60px;
    height: 3px
}

.step-dot.completed,.step-line.completed {
    background: var(--success)
}

.step-labels {
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin-top: .75rem
}

.step-label {
    font-size: .85rem;
    color: #999;
    font-weight: 500;
    width: 100px;
    text-align: center
}

.condition-item i,.condition-list li i,.price-note i,.step-label.active,.variant-btn.active .price {
    color: var(--primary-teal)
}

.trade-content {
    padding: 3rem 0
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,.05)
}

.step-subtitle {
    color: #666;
    margin-bottom: 2rem
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem
}

.device-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s
}

.device-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1)
}

.device-card.selected {
    background: var(--primary-teal-light)
}

.device-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-teal);
    box-shadow: 0 5px 20px rgba(0,0,0,.05)
}

.device-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.device-desc {
    color: #666;
    font-size: .9rem
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem
}

.model-btn {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    font-weight: 600
}

.device-card.selected,.model-btn:hover {
    border-color: var(--primary-teal)
}

.model-btn.selected,.model-btn:hover {
    color: var(--primary-teal)
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem
}

.variant-btn {
    text-align: center
}

.model-btn.selected,.variant-btn.selected {
    border-color: var(--primary-teal);
    background: var(--primary-teal-light)
}

.variant-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .25rem
}

.condition-list li,.variant-price {
    color: #666;
    font-size: .9rem
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem
}

.condition-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all .3s
}

.condition-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px)
}

.condition-card.selected {
    background: var(--primary-teal-light)
}

.condition-grade {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem
}

.grade-a {
    background: var(--success);
    color: #fff
}

.grade-b {
    background: var(--warning);
    color: var(--text-dark)
}

.grade-c {
    background: var(--danger);
    color: #fff
}

.condition-title {
    font-size: 1.1rem;
    margin-bottom: .75rem
}

.condition-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.condition-list li {
    padding: .4rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem
}

.condition-list li i {
    margin-top: .2rem
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem
}

.check-item {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: .75rem
}

.check-item.selected,.check-item:hover,.condition-card.selected {
    border-color: var(--primary-teal)
}

.check-item.selected {
    background: var(--primary-teal-light)
}

.check-item input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-teal)
}

.price-box {
    background: linear-gradient(135deg,var(--primary-teal) 0%,var(--primary-teal-dark) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0
}

.price-label {
    font-size: 1rem;
    opacity: .9;
    margin-bottom: .5rem
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1
}

.price-note {
    opacity: .9;
    margin-top: .75rem
}

.price-range {
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.2)
}

.range-item {
    text-align: center
}

.range-label {
    font-size: .85rem;
    opacity: .8
}

.range-value {
    font-size: 1.25rem;
    font-weight: 700
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color)
}

.btn-back,.btn-next,.btn-submit {
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-back {
    padding: .875rem 2rem;
    background: #fff;
    border: 2px solid var(--border-color);
    font-weight: 600
}

.btn-back:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal)
}

.btn-next,.btn-submit {
    padding: .875rem 2.5rem;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    font-weight: 700
}

.btn-submit {
    font-size: 1.1rem;
    padding: 1rem 3rem
}

.btn-next:hover,.btn-submit:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px)
}

.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,.05);
    position: sticky;
    top: 120px
}

.summary-title {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color)
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    font-size: .95rem
}

.summary-label {
    color: #666
}

.summary-value {
    font-weight: 600
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color)
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.total-label {
    font-weight: 700;
    font-size: 1.1rem
}

.total-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal)
}

.total-note {
    font-size: .85rem;
    color: #666;
    margin-top: .5rem
}

.success-card {
    text-align: center;
    padding: 3rem
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-teal);
    font-size: 3rem
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.success-text {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6
}

.success-details {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0
}

.step-content {
    display: none
}

.step-content.active {
    display: block;
    animation: fadeIn .4s ease
}

@media (max-width:992px) {
    .condition-grid,.device-grid,.model-grid,.variant-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .check-grid {
        grid-template-columns: 1fr
    }

    .summary-card {
        position: static;
        margin-top: 2rem
    }

    .price-value {
        font-size: 2.5rem
    }
}

@media (max-width:576px) {
    .condition-grid,.device-grid,.model-grid,.variant-grid {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 2rem
    }

    .step-labels {
        display: none
    }
}

:root {
    --warning: #ffc107
}

.product-detail {
    padding: 2rem 0 4rem
}

.gallery-container {
    position: sticky;
    top: 100px
}

.main-image {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden
}

.main-image img {
    max-height: 500px;
    max-width: 100%;
    object-fit: contain
}

.gallery-nav,.thumbnails {
    display: flex;
    justify-content: center
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    align-items: center;
    cursor: pointer;
    transition: all .3s
}

.gallery-nav:hover {
    background: var(--primary-teal);
    color: #fff;
    border-color: var(--primary-teal)
}

.gallery-nav.prev {
    left: 1rem
}

.gallery-nav.next {
    right: 1rem
}

.thumbnails {
    gap: 1rem
}

.thumb {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: .5rem;
    cursor: pointer;
    transition: all .3s
}

.thumb.active,.thumb:hover,.variant-btn.active,.variant-btn:hover {
    border-color: var(--primary-teal)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.product-info {
    padding-left: 2rem
}

.product-badges {
    gap: .5rem;
    margin-bottom: 1rem
}

.badge-stock {
    background: #d4edda;
    color: var(--success);
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 600
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.2
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: .9rem
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: .5rem
}

.rating {
    color: var(--warning)
}

.product-price-box {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: .5rem
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark)
}

.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through
}

.discount-badge {
    background: #f44;
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600
}

.price-note {
    color: #666;
    font-size: .9rem
}

.variant-section {
    margin-bottom: 1.5rem
}

.variant-title {
    font-weight: 600;
    margin-bottom: .75rem;
    font-size: 1rem
}

.variant-options {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.variant-btn {
    padding: .75rem 1.25rem;
    border: 2px solid var(--border-color);
    background: #fff;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem
}

.variant-btn.active {
    background: var(--primary-teal-light);
    color: var(--primary-teal)
}

.variant-btn .price {
    font-size: .85rem;
    color: #666
}

.color-options {
    display: flex;
    gap: .75rem
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    transition: all .3s
}

.color-btn:hover {
    transform: scale(1.1)
}

.color-btn.active {
    border-color: var(--primary-teal)
}

.color-btn.active::after {
    content: "";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
    font-size: 1.2rem
}

.color-natural {
    background: #8b8680
}

.color-blue {
    background: #2f455c
}

.color-white {
    background: #f5f5f0;
    border: 2px solid #ddd
}

.color-black {
    background: #1a1a1a
}

.condition-box {
    border: 2px solid var(--primary-teal);
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--primary-teal-light)
}

.condition-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem
}

.condition-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem
}

.condition-title {
    font-weight: 700;
    color: var(--primary-teal)
}

.condition-desc {
    color: #666;
    font-size: .9rem;
    line-height: 1.5
}

.condition-details {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: .75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(60,185,178,.2)
}

.condition-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.btn-add-cart,.btn-wishlist {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.btn-add-cart {
    flex: 1;
    padding: 1.25rem;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    font-size: 1.1rem;
    font-weight: 600;
    gap: .75rem
}

.btn-add-cart:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px)
}

.btn-wishlist {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    background: #fff;
    font-size: 1.5rem
}

.btn-wishlist.active,.btn-wishlist:hover {
    border-color: #f44;
    background: #f44;
    color: #fff
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: #666
}

.trust-item i {
    color: var(--primary-teal);
    font-size: 1.25rem
}

.info-tabs {
    margin-top: 3rem
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    gap: 2rem
}

.nav-tabs .nav-link {
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 1rem 0;
    font-weight: 600;
    color: #666;
    background: 0 0;
    margin: 0
}

.nav-tabs .nav-link:hover {
    color: var(--primary-teal);
    border-color: transparent
}

.nav-tabs .nav-link.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
    background: 0 0
}

.tab-content {
    padding: 2rem 0
}

.specs-table {
    width: 100%
}

.spec-row {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color)
}

.spec-label {
    width: 200px;
    color: #666;
    font-weight: 500
}

.spec-value {
    flex: 1;
    font-weight: 600
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 1.5rem
}

.package-icon,.package-item {
    border-radius: 12px;
    display: flex;
    align-items: center
}

.package-item {
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light)
}

.package-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-teal)
}

.reviews-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color)
}

.rating-big {
    text-align: center
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1
}

.rating-stars {
    color: var(--warning);
    font-size: 1.5rem;
    margin: .5rem 0
}

.rating-count {
    color: #666
}

.rating-bars {
    flex: 1
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem
}

.bar-label {
    width: 60px;
    font-weight: 500
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: var(--warning);
    border-radius: 4px
}

.bar-count {
    width: 40px;
    text-align: right;
    color: #666;
    font-size: .9rem
}

.review-card {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem
}

.reviewer,.reviewer-avatar {
    display: flex;
    align-items: center
}

.reviewer {
    gap: 1rem
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    justify-content: center;
    color: var(--primary-teal);
    font-weight: 700
}

.reviewer-name {
    font-weight: 600
}

.review-date {
    color: #999;
    font-size: .85rem
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: var(--success);
    font-size: .85rem;
    margin-top: .25rem
}

.review-rating {
    color: var(--warning)
}

.review-title {
    font-weight: 700;
    margin-bottom: .5rem
}

.review-text {
    color: #666;
    line-height: 1.6
}

.similar-section {
    padding: 3rem 0;
    background: var(--bg-light)
}

.product-card-sm {
    background: #fff;
    border: 1px solid var(--border-color)
}

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

.product-name-sm {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.product-specs-sm {
    color: #666;
    font-size: .8rem;
    margin-bottom: .5rem
}

@media (max-width:768px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem
    }

    .current-price,.product-title {
        font-size: 1.75rem
    }

    .action-buttons {
        flex-direction: column
    }

    .btn-wishlist {
        width: 100%
    }

    .trust-badges {
        flex-wrap: wrap
    }

    .reviews-summary {
        flex-direction: column;
        gap: 1.5rem
    }

    .spec-label {
        width: 120px
    }
}

.btn-outline-teal,.btn-teal {
    padding: .75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all .3s
}

.btn-teal {
    background-color: var(--primary-teal);
    color: #fff;
    border: 0
}

.btn-teal:hover {
    background-color: var(--primary-teal-dark);
    color: #fff;
    transform: translateY(-2px)
}

.btn-outline-teal {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid #e0e0e0
}

.btn-outline-teal:hover {
    border-color: var(--primary-teal)
}

.hero-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    overflow: hidden
}

.btn-outline-teal:hover,.hero-features i,.hero-title .highlight {
    color: var(--primary-teal)
}

.hero-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem
}

.hero-features {
    display: flex;
    gap: 2rem;
    font-size: .9rem;
    color: #666
}

.hero-features i {
    margin-right: .5rem
}

.category-pills,.hero-image {
    display: flex;
    justify-content: center
}

.hero-image {
    position: relative;
    align-items: center
}

.hero-image img {
    max-width: 100%;
    border-radius: 40px
}

.category-pills {
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem
}

.category-pill {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: .75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem
}

.category-pill:hover {
    border-color: var(--primary-teal);
    transform: translateY(-2px)
}

.category-pill i,.category-pill:hover,.footer-links a:hover,.see-all:hover {
    color: var(--primary-teal)
}

.stats-section {
    padding: 3rem 0;
    background: var(--bg-light)
}

.stat-number {
    color: white
}

.stat-label {
    color: #ffffff
}

.section-header,.see-all {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-header {
    justify-content: space-between
}

.see-all {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    gap: .5rem;
    border: 1px solid #e0e0e0;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .9rem
}

.see-all:hover {
    border-color: var(--primary-teal)
}

.filter-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.filter-tab {
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    border: 0;
    background: 0 0;
    color: #666
}

.filter-tab.active {
    background: var(--primary-teal);
    color: #fff
}

.filter-tab:hover:not(.active) {
    background: #f0f0f0
}

.product-card {
    height: 100%
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e8f5f4;
    color: var(--primary-teal);
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase
}

.product-badge.popular {
    background: var(--primary-teal);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .25rem
}

.product-badge.discount {
    background: #f44;
    color: #fff;
    left: auto;
    right: 1rem
}

.product-badge.grade {
    background: #f0f0f0;
    color: #666;
    position: static;
    display: inline-block;
    margin-bottom: .5rem
}

.product-old-price {
    margin-left: .5rem
}

.how-it-works,.second-hand-section {
    background: var(--bg-light)
}

.how-it-works {
    padding: 4rem 0;
    text-align: center
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative
}

.step-icon,.step-number {
    color: var(--primary-teal)
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-teal-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem
}

.step-number {
    text-transform: uppercase;
    margin-bottom: .5rem
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.step-desc {
    color: #666;
    font-size: .9rem;
    line-height: 1.5
}

.why-choose {
    padding: 4rem 0;
    background: var(--bg-gray);
    text-align: center
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap
}

.feature-box {
    flex: 1;
    min-width: 200px;
}

.feature-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-teal);
    font-size: 1.5rem
}

.feature-box-title {
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: 1rem
}

.feature-box-desc {
    color: #666;
    font-size: .85rem;
    line-height: 1.4
}

.cta-section {
    background: var(--bg-gray)
}

.cta-box {
    background: #e8ecef;
    border-radius: 20px;
    padding: 3rem;
    text-align: center
}

.cta-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.quality-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center
}

.quality-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap
}

.quality-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    min-width: 220px;
    position: relative
}

.quality-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #e0e0e0
}

.quality-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-teal);
    font-size: 1.25rem
}

.quality-title {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .5rem
}

.quality-desc {
    color: #666;
    font-size: .85rem;
    line-height: 1.4
}

.testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left
}

.testimonial-stars {
    color: var(--primary-teal);
    font-size: .9rem
}

.testimonial-text {
    font-style: italic
}

.author-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: .8rem
}

.author-name {
    font-weight: 600;
    font-size: .9rem
}

.visit-section {
    padding: 4rem 0;
    background: var(--bg-gray);
    text-align: center
}

.visit-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.visit-info {
    text-align: left;
    min-width: 250px
}

.visit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.visit-icon {
    color: var(--primary-teal);
    font-size: 1.25rem;
    margin-top: .2rem
}

.visit-label {
    font-weight: 600;
    margin-bottom: .25rem
}

.visit-value {
    color: #666;
    font-size: .9rem
}

.visit-value a {
    color: var(--primary-teal);
    text-decoration: none
}

.map-container {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
    background: #ddd
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.footer {
    background: #fff;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e0e0e0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none
}

.footer-desc {
    color: #666;
    font-size: .9rem;
    line-height: 1.5;
    max-width: 300px
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem
}

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

.footer-links li {
    margin-bottom: .5rem
}

.footer-links a {
    text-decoration: none;
    transition: color .3s
}

.footer-contact,.footer-links a {
    color: #666;
    font-size: .9rem
}

.footer-contact i {
    color: var(--primary-teal);
    margin-right: .5rem
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-buttons,.hero-features {
        flex-direction: column
    }

    .hero-features {
        gap: 1rem
    }

    .stat-number {
        font-size: 2rem
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .visit-content {
        flex-direction: column-reverse
    }

    .features-grid,.quality-grid,.steps-container,.testimonials-grid {
        flex-direction: column;
        align-items: center
    }
}

:root {
    --danger: #dc3545
}

.checkout-progress {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color)
}

.progress-steps {
    justify-content: center;
    gap: 1rem
}

.progress-steps,.step,.step-number {
    display: flex;
    align-items: center
}

.step {
    gap: .5rem;
    color: #999;
    font-weight: 500
}

.step.active {
    color: var(--primary-teal)
}

.step.completed {
    color: var(--success)
}

.step-number {
    height: 35px;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem
}

.step.active .step-number {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: #fff
}

.step-divider {
    width: 60px;
    height: 2px;
    background: var(--border-color)
}

.step-divider.completed {
    background: var(--success)
}

.cart-section {
    padding: 3rem 0
}

.cart-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.cart-subtitle {
    color: #666;
    margin-bottom: 2rem
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem
}

.cart-items {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem
}

.cart-header,.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    border-bottom: 1px solid var(--border-color)
}

.cart-header {
    padding-bottom: 1rem;
    font-weight: 600;
    color: #666;
    font-size: .9rem
}

.cart-item {
    align-items: center;
    padding: 1.5rem 0
}

.cart-item:last-child {
    border-bottom: none
}

.product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-image {
    width: 100%;
    border-radius: 12px;
    padding: .5rem
}

.product-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.product-variant {
    color: #666;
    font-size: .85rem;
    margin-bottom: .25rem
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: .5rem
}

.qty-btn,.qty-input {
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px
}

.qty-btn {
    width: 35px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.qty-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal)
}

.qty-input {
    width: 50px;
    text-align: center;
    font-weight: 600
}

.item-price,.item-total {
    font-weight: 700;
    font-size: 1.1rem
}

.item-total {
    font-weight: 800
}

.remove-btn {
    width: 35px;
    height: 35px;
    border: 0;
    background: 0 0;
    color: #999;
    cursor: pointer;
    transition: all .3s;
    border-radius: 8px
}

.remove-btn:hover {
    background: #fee;
    color: var(--danger)
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color)
}

.continue-shopping {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem
}

.continue-shopping:hover {
    color: var(--primary-teal-dark)
}

.clear-cart {
    color: #666;
    background: 0 0;
    border: 0;
    font-size: .9rem;
    cursor: pointer
}

.clear-cart:hover {
    color: var(--danger)
}

.cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 700
}

.coupon-section,.summary-title {
    margin-bottom: 1.5rem
}

.coupon-label {
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: .9rem
}

.coupon-input-group {
    display: flex;
    gap: .5rem
}

.coupon-btn,.coupon-input {
    border: 1px solid var(--border-color);
    border-radius: 12px
}

.coupon-input {
    flex: 1;
    padding: .75rem 1rem;
    font-size: .9rem
}

.coupon-btn {
    padding: .75rem 1.25rem;
    background: var(--bg-light);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s
}

.coupon-btn:hover {
    background: var(--primary-teal);
    color: #fff;
    border-color: var(--primary-teal)
}

.coupon-applied {
    background: var(--primary-teal-light);
    border: 1px dashed var(--primary-teal);
    border-radius: 12px;
    padding: .75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .75rem
}

.coupon-code {
    font-weight: 700;
    color: var(--primary-teal)
}

.coupon-discount {
    color: var(--success);
    font-weight: 600
}

.remove-coupon {
    color: #999;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    font-size: .95rem
}

.summary-row.discount {
    color: var(--success)
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: .5rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 800
}

.savings {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: .75rem;
    border-radius: 12px;
    text-align: center;
    font-size: .9rem;
    margin: 1rem 0
}

.checkout-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    margin-top: 1rem;
    align-items: center;
    gap: .75rem
}

.checkout-btn:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px)
}

.checkout-btn,.payment-icons,.trust-mini {
    display: flex;
    justify-content: center
}

.payment-icons {
    gap: 1rem;
    margin-top: 1rem;
    opacity: .6
}

.payment-icons i {
    font-size: 1.5rem
}

.trust-mini {
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color)
}

.trust-item-mini {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: #666
}

.hero-title span,.info-title i,.trust-item-mini i {
    color: var(--primary-teal)
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-teal);
    font-size: 3rem
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.empty-text {
    color: #666;
    margin-bottom: 2rem
}

.recommended-section {
    padding: 3rem 0;
    background: #fff
}

.product-card-sm {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1rem;
    transition: all .3s
}

.product-card-sm:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,.1)
}

.product-image-sm {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.product-image img,.product-image-sm img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain
}

.product-name-sm {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .25rem
}

.product-price-sm {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-teal)
}

.add-btn-sm {
    width: 100%;
    padding: .5rem;
    background: #fff;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    margin-top: .75rem
}

.add-btn-sm:hover,.team-social a:hover {
    background: var(--primary-teal);
    color: #fff
}

@media (max-width:992px) {
    .cart-container {
        grid-template-columns: 1fr
    }

    .cart-summary {
        position: static
    }

    .cart-header {
        display: none
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--bg-light);
        border-radius: 15px;
        margin-bottom: 1rem
    }

    .item-price,.item-total {
        display: flex;
        justify-content: space-between
    }

    .item-price::before,.item-total::before {
        content: "Preț unitar:";
        font-weight: 400;
        color: #666
    }

    .item-total::before {
        content: "Total:"
    }

    .progress-steps {
        flex-wrap: wrap
    }

    .step-divider {
        width: 30px
    }
}

:root {
    --success: #28a745
}

.contact-hero {
    background: linear-gradient(135deg,var(--primary-teal) 0%,var(--primary-teal-dark) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center
}

.hero-label {
    opacity: .9
}

.hero-text {
    opacity: .9;
    margin: 0 auto
}

.contact-cards {
    margin-top: -3rem;
    position: relative;
    z-index: 2
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transition: all .3s;
    height: 100%
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12)
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-teal);
    font-size: 1.75rem
}

.card-title,.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem
}

.card-info {
    color: #666;
    font-size: .95rem;
    line-height: 1.6
}

.card-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: .75rem
}

.card-link:hover {
    color: var(--primary-teal-dark)
}

.contact-main {
    padding: 4rem 0
}

.form-section {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,.05)
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: .9rem
}

.form-control,.form-select {
    padding: .875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: .95rem;
    transition: all .3s
}

.form-control:focus,.form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px var(--primary-teal-light)
}

textarea.form-control {
    min-height: 150px;
    resize: vertical
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.submit-btn:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px)
}

.info-sidebar {
    padding-left: 2rem
}

.info-block {
    margin-bottom: 2.5rem
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.info-text {
    color: #666;
    line-height: 1.7;
    font-size: .95rem
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: .95rem
}

.schedule-item:last-child {
    border-bottom: none
}

.schedule-day {
    font-weight: 500
}

.schedule-hours {
    color: #666
}

.schedule-hours.closed {
    color: #999
}

.map-section {
    padding: 0 0 4rem
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    max-width: 300px
}

.map-overlay-title {
    font-weight: 700;
    margin-bottom: .5rem
}

.map-overlay-text {
    color: #666;
    font-size: .9rem;
    margin-bottom: 1rem
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary-teal);
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem
}

.directions-btn:hover {
    background: var(--primary-teal-dark);
    color: #fff
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-light)
}

.accordion-item {
    border: 0;
    background: #fff;
    border-radius: 15px!important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.03)
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    background: #fff;
    border: 0;
    box-shadow: none!important
}

.accordion-button:not(.collapsed) {
    color: var(--primary-teal);
    background: #fff
}

.accordion-button::after {
    background-size: 1.25rem
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7
}

.social-section {
    padding: 3rem 0;
    text-align: center
}

.social-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.social-link,.social-links {
    display: flex;
    justify-content: center
}

.social-links {
    gap: 1rem
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: all .3s
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.15)
}

.social-fb {
    background: #1877f2
}

.social-ig {
    background: #e4405f
}

.social-wa {
    background: #25d366
}

.social-tg {
    background: #08c
}

.social-yt {
    background: red
}

@media (max-width:992px) {
    .hero-title {
        font-size: 2.25rem
    }

    .info-sidebar {
        padding-left: 0;
        margin-top: 2rem
    }

    .map-overlay {
        left: 1rem;
        bottom: 1rem;
        right: 1rem;
        max-width: none
    }
}

.breadcrumb-section {
    padding: 1.5rem 0;
    background: var(--bg-light)
}

.breadcrumb,.filter-option label {
    margin: 0;
    font-size: .9rem
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500
}

.page-header {
    padding: 2rem 0;
    background: #fff
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.page-subtitle {
    color: #666;
    font-size: 1rem
}

.author-info span,.results-count {
    color: #666;
    font-size: .9rem
}

.filter-section {
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100
}

.filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap
}

.filter-dropdown {
    position: relative
}

.filter-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: .6rem 1rem;
    border-radius: 25px;
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    transition: all .3s
}

.filter-btn.active,.filter-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal)
}

.filter-btn i {
    font-size: .8rem
}

.filter-menu,.product-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.1)
}

.filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: .5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    min-width: 250px;
    display: none;
    z-index: 1000
}

.filter-dropdown:hover .filter-menu {
    display: block
}

.filter-option,.price-range {
    display: flex;
    align-items: center
}

.filter-option {
    gap: .75rem;
    padding: .5rem 0;
    cursor: pointer
}

.filter-option input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-teal)
}

.filter-option label {
    cursor: pointer
}

.price-range {
    gap: .5rem;
    margin-top: .5rem
}

.price-input,.sort-select {
    border: 1px solid var(--border-color);
    font-size: .9rem
}

.price-input {
    width: 100px;
    padding: .5rem;
    border-radius: 8px
}

.sort-select {
    margin-left: auto;
    padding: .6rem 1rem;
    border-radius: 25px;
    background: #fff;
    cursor: pointer
}

.active-filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.filter-tag {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    padding: .4rem .8rem;
    border-radius: 20px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.clear-filters,.filter-tag button {
    cursor: pointer;
    background: 0 0;
    border: 0
}

.filter-tag button {
    color: var(--primary-teal);
    padding: 0;
    font-size: 1rem;
    line-height: 1
}

.clear-filters {
    color: #666;
    font-size: .85rem;
    text-decoration: underline
}

.products-section {
    padding: 2rem 0 4rem;
    background: #fff
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.5rem
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    transition: all .3s;
    position: relative;
    display: flex;
    flex-direction: column
}

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

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none
}

.badge-new,.wishlist-btn:hover {
    background: var(--primary-teal-light);
    color: var(--primary-teal)
}

.badge-new {
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase
}

.badge-popular {
    background: var(--primary-teal);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .25rem
}

.badge-discount,.badge-grade,.badge-popular {
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 600
}

.badge-discount {
    background: #f44;
    color: #fff
}

.badge-grade {
    background: #f0f0f0;
    color: #666
}

.product-image,.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    z-index: 10
}

.wishlist-btn:hover {
    border-color: var(--primary-teal)
}

.product-image {
    height: 200px;
    margin-bottom: 1rem;
    margin-top: 1rem
}

.product-category {
    color: #999;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .25rem
}

.product-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: .25rem;
    line-height: 1.3
}

.product-specs {
    color: #666;
    font-size: .9rem;
    margin-bottom: .5rem
}

.product-condition {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .8rem;
    color: var(--primary-teal);
    background: var(--primary-teal-light);
    padding: .25rem .5rem;
    border-radius: 10px;
    margin-bottom: .75rem
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-top: auto
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark)
}

.product-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through
}

.add-to-cart,.pagination-section {
    display: flex;
    justify-content: center
}

.add-to-cart {
    width: 100%;
    margin-top: 1rem;
    padding: .75rem;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    align-items: center;
    gap: .5rem
}

.add-to-cart:hover {
    background: var(--primary-teal-dark)
}

.pagination-section {
    padding: 2rem 0
}

.pagination {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0
}

.page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s
}

.page-item.active .page-link {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff
}

.page-item .page-link:hover:not(.active) {
    border-color: var(--primary-teal);
    color: var(--primary-teal)
}

.view-toggle {
    display: flex;
    gap: .5rem;
    margin-left: 1rem
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.view-btn.active,.view-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal)
}

.products-list .product-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem
}

.products-list .product-image {
    width: 200px;
    height: 150px;
    margin: 0;
    flex-shrink: 0
}

.products-list .product-info {
    flex: 1
}

.products-list .product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px
}

.mobile-filter-btn {
    display: none;
    background: var(--primary-teal);
    color: #fff;
    border: 0;
    padding: .6rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    align-items: center;
    gap: .5rem
}

@media (max-width:768px) {
    .page-title {
        font-size: 1.75rem
    }

    .filter-container,.products-list .product-card {
        flex-direction: column;
        align-items: stretch
    }

    .sort-select {
        margin-left: 0;
        width: 100%
    }

    .view-toggle {
        display: none
    }

    .mobile-filter-btn {
        display: flex;
        width: 100%;
        justify-content: center
    }

    .filter-dropdown {
        display: none
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 1rem
    }

    .products-list .product-image {
        width: 100%;
        height: 200px
    }
}

.skeleton {
    background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 10px
}

:root {
    --primary-teal: #3CB9B2;
    --primary-teal-dark: #2A9D96;
    --primary-teal-light: #E8F5F4;
    --bg-light: #F8F9FA;
    --bg-gray: #EEF2F5;
    --text-dark: #1A1A1A;
    --text-muted: #666;
    --border-color: #E0E0E0
}

.navbar {
    padding: 1rem 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color)
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark)!important;
    display: flex;
    align-items: center;
    gap: .5rem
}

.about-hero::before,.brand-icon {
    background: #000000;
    border-radius: 50%
}

.brand-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.nav-link {
    color: #666!important;
    font-weight: 500;
    margin: 0 .5rem;
    transition: color .3s;
    font-size: .95rem
}

.nav-link.active,.nav-link:hover {
    color: var(--primary-teal)!important
}

.about-hero {
        background: linear-gradient(135deg, var(--primary-teal-light) 0%, #3CB9B2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    opacity: .05
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-label {
    color: white;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.hero-text {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    line-height: 1.7
}

.stats-bar {
    background: var(--primary-teal);
    color: #fff;
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    margin-left: 2rem;
    margin-right: 2rem
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.stat-label {
    font-size: 1rem;
    opacity: .9
}

.story-section {
    padding: 5rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-label {
    color: var(--primary-teal);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

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

.story-image {
    position: relative
}

.story-image img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover
}

.experience-badge,.process-steps::before {
    position: absolute;
    background: var(--primary-teal)
}

.experience-badge {
    bottom: -20px;
    right: -20px;
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center
}

.experience-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1
}

.experience-text {
    font-size: .9rem;
    opacity: .9
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem
}

.story-quote {
    border-left: 4px solid var(--primary-teal);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #444;
    font-size: 1.1rem
}

.story-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark)
}

       /* Values Section */
        .values-section {
            padding: 5rem 0;
            background: var(--bg-light);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
.value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all .3s;
    border: 1px solid var(--border-color)
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    border-color: var(--primary-teal)
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-teal);
    font-size: 2rem
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.value-desc {
    color: #666;
    font-size: .95rem;
    line-height: 1.6
}

.team-section {
    padding: 5rem 0
}

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

.team-card {
    text-align: center
}

.team-image {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative
}

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

.team-social,.team-social a {
    display: flex;
    justify-content: center;
    transition: all .3s
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent);
    padding: 1.5rem 1rem 1rem;
    gap: 1rem;
    opacity: 0
}

.team-card:hover .team-social {
    opacity: 1
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.team-role {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: .9rem
}

.process-section {
    padding: 5rem 0;
    background: var(--bg-gray)
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative
}

.process-steps::before {
    content: "";
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    opacity: .3
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    position: relative;
    z-index: 1
}

.step-number-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal)
}

.process-step p {
    color: #666;
    font-size: .95rem
}

.testimonials-section {
    padding: 5rem 0
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    position: relative
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--primary-teal);
    opacity: .2;
    font-family: Georgia,serif
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem
}

.testimonial-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover
}

.author-info h5 {
    font-weight: 700;
    margin-bottom: .25rem
}

.partners-section {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid var(--border-color)
}

.partners-title {
    text-align: center;
    color: #666;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap
}

.partner-logo {
    height: 40px;
    opacity: .5;
    filter: grayscale(100%);
    transition: all .3s
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%)
}

.cta-section {
    padding: 5rem 0;
    color: #212529;
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.cta-text {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

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

.btn-white {
    background: #fff;
    color: var(--primary-teal);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.2)
}

.btn-outline-white,.chat-button {
    align-items: center;
    color: #202020;
    transition: all .3s
}

.btn-outline-white {
    background: 0 0;
    border: 2px solid #202020;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: .5rem
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-teal)
}

.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    cursor: pointer;
    z-index: 1000
}

.chat-button:hover {
    transform: scale(1.1)
}

@media (max-width:992px) {
    .hero-title {
        font-size: 2.5rem
    }

    .stats-bar {
        margin-left: 1rem;
        margin-right: 1rem
    }

    .stat-number {
        font-size: 2rem
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .experience-badge {
        right: 20px;
        bottom: 20px
    }

    .team-grid,.values-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .process-steps {
        flex-direction: column;
        align-items: center
    }

    .process-steps::before {
        display: none
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:576px) {
    .team-grid,.values-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column
    }
}