/* ========================================
   TECH STORE - PAGE-SPECIFIC STYLES
   ======================================== */

/* Cart Page Styles */
@media (min-width: 1025px) {
    .h-custom {
        height: 100vh !important;
    }
}

.quantity {
    width: 100px;
    text-align: center;
}

/* Feedback Page Styles */
.fb-con {
    max-width: 600px;
    color: black;
    align-items: center;
    margin: auto;
    padding: 100px;
}

.fb-con .btn {
    float: right;
}

/* Product Page Styles */
.product-container {
    padding: 100px;
    display: block;
}

.select-size {
    width: 100px;
}

.product-container p {  
    padding-top: 20px;
    line-height: 1.55;
}

/* Profile Page Styles */
.profile-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.profile-card {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

.profile-info .row {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.profile-info .row:last-child {
    border-bottom: none;
}

.profile-info p {
    margin: 0;
    font-size: 16px;
}

.profile-info .text-muted {
    color: #6c757d !important;
}

/* Responsive Page Styles */
@media (max-width: 768px) {
    .fb-con {
        padding: 50px 20px;
    }
    
    .product-container {
        padding: 50px 20px;
    }
    
    .profile-info {
        padding: 20px;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
}
