.main-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.top-header {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-tree {
    width: 35px;
    height: 35px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan-primary);
    letter-spacing: 1px;
}

.logo-text-sub {
    font-size: 11px;
    color: var(--cyan-primary);
    font-weight: 600;
}

.cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--cyan-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-url {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.product-info {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.product_stars {
    color: #fbbf24;
}

.rating-text {
    color: #9ca3af;
    font-size: 0.875rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan-primary);
}

.original-price {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cyan-primary);
    margin-bottom: 0.75rem;
}

.description-text {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-features {
    background: rgba(6, 182, 212, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--cyan-primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-label {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--cyan-primary);
    font-size: 1.25rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem;
    z-index: 100;
}

.action-buttons-container {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    color: var(--cyan-primary);
    border: 1px solid var(--cyan-primary);
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-buy-now {
    flex: 1;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
}

.btn-buy-now:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
}

@media (min-width: 768px) {

    .product-image {
        height: 400px;
    }

    .action-buttons {
        position: static;
        background: transparent;
        border: none;
        padding: 0;
    }

    .product-info {
        padding: 2.5rem;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}