body.secondhand-page {
    background-color: #050505;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    transition: opacity 0.6s ease;
    opacity: 1;
}

.secondhand-page.fade-out {
    opacity: 0;
}

.secondhand-back-link {
    display: inline-block;
    margin: 20px 5%;
    text-decoration: none;
    color: var(--gold-metalic);
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 50;
    position: relative;
    transition: 0.3s;
}

.secondhand-back-link:hover {
    transform: translateX(-5px);
}

.secondhand-back-link i {
    margin-right: 8px;
}

.secondhand-back-link .brand-sub {
    font-weight: 300;
    color: white;
}

.page-container {
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    min-height: 100vh;
    padding: 0 5% 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.page-header h1 {
    color: var(--gold-metalic);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-header p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.adv-card {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.adv-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-metalic);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.adv-icon {
    font-size: 2.5rem;
    color: var(--gold-metalic);
    margin-bottom: 20px;
}

.adv-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.adv-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.section-title {
    text-align: center;
    color: var(--gold-metalic);
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "SATIN AL";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold-metalic);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.product-card:hover {
    background: var(--gold-metalic);
    color: #000;
    transform: scale(1.03);
}

.product-svg {
    width: 60px;
    height: 60px;
    stroke: var(--gold-metalic);
    margin-bottom: 20px;
    transition: 0.3s;
    fill: none;
}

.product-card:hover .product-svg {
    stroke: #000;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: 0.3s;
}

.product-card:hover h3,
.product-card:hover p {
    color: #000;
}

.product-card p {
    color: #ccc;
    font-size: 0.85rem;
    transition: 0.3s;
}

.buy-banner {
    background: linear-gradient(135deg, #1a1500 0%, #0a0800 100%);
    border: 2px dashed var(--gold-metalic);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.buy-text-area {
    flex: 1;
    min-width: 300px;
}

.buy-text-area h2 {
    color: var(--gold-metalic);
    font-size: 2rem;
    margin-bottom: 15px;
}

.buy-text-area p {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.6;
}

.buy-btn {
    background-color: var(--gold-metalic);
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.buy-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    background-color: #fff;
    color: #000;
}

.secondhand-page .floating-wp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .secondhand-page .floating-wp-btn {
        bottom: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
        font-size: 1.55rem;
    }

    .buy-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .buy-btn {
        width: 100%;
        justify-content: center;
    }
}
